mirror of
https://github.com/flynx/actions.js.git
synced 2025-10-28 18:00:11 +00:00
minor bug fix...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
3da80bb75c
commit
597129c5a0
@ -119,7 +119,7 @@ Object.assign(
|
|||||||
'\\d+\\.\\d+|\\d+',
|
'\\d+\\.\\d+|\\d+',
|
||||||
|
|
||||||
// identifiers...
|
// identifiers...
|
||||||
'[a-zA-Z$@#_][a-zA-Z0-9$@#_-\\.]*',
|
'[a-zA-Z$@#_][a-zA-Z0-9$@#_\\-\\.]*',
|
||||||
|
|
||||||
// rest args...
|
// rest args...
|
||||||
'\\.\\.\\.',
|
'\\.\\.\\.',
|
||||||
@ -136,7 +136,7 @@ Object.assign(
|
|||||||
new parseStringAction.Argument(e.slice(1))
|
new parseStringAction.Argument(e.slice(1))
|
||||||
// idetifiers...
|
// idetifiers...
|
||||||
// NOTE: keep this last as it is the most general...
|
// NOTE: keep this last as it is the most general...
|
||||||
: /^[a-zA-Z$@#_][a-zA-Z0-9$@#_-\.]*$/.test(e) ?
|
: /^[a-zA-Z$@#_][a-zA-Z0-9$@#_\-\.]*$/.test(e) ?
|
||||||
new parseStringAction.Identifier(e)
|
new parseStringAction.Identifier(e)
|
||||||
: JSON.parse(e) })
|
: JSON.parse(e) })
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ig-actions",
|
"name": "ig-actions",
|
||||||
"version": "3.24.17",
|
"version": "3.24.18",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "actions.js",
|
"main": "actions.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user