mirror of
https://github.com/flynx/actions.js.git
synced 2025-10-28 09:50:10 +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+',
|
||||
|
||||
// identifiers...
|
||||
'[a-zA-Z$@#_][a-zA-Z0-9$@#_-\\.]*',
|
||||
'[a-zA-Z$@#_][a-zA-Z0-9$@#_\\-\\.]*',
|
||||
|
||||
// rest args...
|
||||
'\\.\\.\\.',
|
||||
@ -136,7 +136,7 @@ Object.assign(
|
||||
new parseStringAction.Argument(e.slice(1))
|
||||
// idetifiers...
|
||||
// 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)
|
||||
: JSON.parse(e) })
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ig-actions",
|
||||
"version": "3.24.17",
|
||||
"version": "3.24.18",
|
||||
"description": "",
|
||||
"main": "actions.js",
|
||||
"scripts": {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user