Skip to content

Commit

Permalink
Fix lint error, bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
robsimmons committed Dec 15, 2023
1 parent 692deba commit cbe1778
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dusa",
"version": "0.0.10",
"version": "0.0.11",
"type": "module",
"main": "lib/client.js",
"types": "lib/client.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/language/dusa-tokenizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export type Token =
export type ParserState = StateRoot;

const META_ID_TOKEN = /^[A-Za-z_][A-Za-z0-9_]*/;
const META_NUM_TOKEN = /^[+\-]?[0-9][A-Za-z0-9_]*/;
const META_NUM_TOKEN = /^[+-]?[0-9][A-Za-z0-9_]*/;
const CONST_TOKEN = /^[a-z][a-zA-Z0-9_]*$/;
const WILDCARD_TOKEN = /^_[a-zA-Z0-9_]*$/;
const VAR_TOKEN = /^[A-Z][a-zA-Z0-9_]*$/;
Expand Down

0 comments on commit cbe1778

Please sign in to comment.