Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Jun 5, 2020
1 parent 7c5e71e commit 5b16b24
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,30 +22,30 @@
"es6-error": "^4.1.1",
"pianola": "^2.2.1",
"regex-parser": "^2.2.10",
"roarr": "^2.15.2"
"roarr": "^2.15.3"
},
"description": "Declarative DOM extraction expression evaluator.",
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-transform-flow-strip-types": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"ava": "^3.3.0",
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/plugin-transform-flow-strip-types": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/register": "^7.10.1",
"ava": "^3.8.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-export-default-name": "^2.0.4",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-canonical": "^19.0.1",
"flow-bin": "^0.118.0",
"coveralls": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-canonical": "^20.0.5",
"flow-bin": "^0.126.1",
"flow-copy-source": "^2.0.9",
"husky": "^4.2.3",
"husky": "^4.2.5",
"lodash": "^4.17.15",
"nyc": "^15.0.0",
"semantic-release": "^17.0.3",
"sinon": "^8.1.1",
"nyc": "^15.1.0",
"semantic-release": "^17.0.8",
"sinon": "^9.0.2",
"sprintf-js": "^1.1.2"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/expressions.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
* @see https://github.com/gajus/surgeon#quantifier-expression
* @see https://www.regex101.com/r/k3IuC4/2
*/
export const quantifierExpression = /^\{(\d+?)(,?)(-?\d+)?\}(?:\[(\d+)\])?$/;
export const quantifierExpression = /^{(\d+?)(,?)(-?\d+)?}(?:\[(\d+)])?$/;
8 changes: 4 additions & 4 deletions src/types.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,24 +32,24 @@ export type UserConfigurationType = {
+evaluator?: EvaluatorType,
+subroutines?: {
[key: string]: SubroutineType,
...,
...
},
...,
...
};

export type ConfigurationType = {|
+evaluator: EvaluatorType,
+subroutines: {
[key: string]: SubroutineType,
...,
...
},
|};

type QueryChildrenType = {

// eslint-disable-next-line no-use-before-define
[key: string]: DenormalizedQueryType,
...,
...
};

export type DenormalizedQueryType =
Expand Down

0 comments on commit 5b16b24

Please sign in to comment.