@finnair/path-parser 5.0.0 → 5.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -0
- package/dist/matcherGrammar.d.ts +1 -1
- package/dist/matcherGrammar.js +1 -1
- package/dist/pathGrammar.d.ts +1 -1
- package/dist/pathGrammar.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,40 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.0.1](https://github.com/finnair/v-validation/compare/v5.0.0...v5.0.1) (2023-10-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* moo import ([a866737](https://github.com/finnair/v-validation/commit/a8667371515fd2fe92fa2e32b382ccc55612b704))
|
|
12
|
+
* npm ignore node_modules for published packages ([9690faf](https://github.com/finnair/v-validation/commit/9690fafb8289e6448dbbeb6274054a8f2b01907a))
|
|
13
|
+
* revert npm ignore node_modules for published packages ([53acd31](https://github.com/finnair/v-validation/commit/53acd312441e823d507152f371ecca0367412c18))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
**Note:** Version bump only for package @finnair/path-parser
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## [5.0.1](https://github.com/finnair/v-validation/compare/v5.0.0...v5.0.1) (2023-10-13)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
|
|
32
|
+
* moo import ([a866737](https://github.com/finnair/v-validation/commit/a8667371515fd2fe92fa2e32b382ccc55612b704))
|
|
33
|
+
* npm ignore node_modules for published packages ([9690faf](https://github.com/finnair/v-validation/commit/9690fafb8289e6448dbbeb6274054a8f2b01907a))
|
|
34
|
+
* revert npm ignore node_modules for published packages ([53acd31](https://github.com/finnair/v-validation/commit/53acd312441e823d507152f371ecca0367412c18))
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
6
40
|
# [5.0.0](https://github.com/finnair/v-validation/compare/v4.3.0...v5.0.0) (2023-10-13)
|
|
7
41
|
|
|
8
42
|
|
package/dist/matcherGrammar.d.ts
CHANGED
package/dist/matcherGrammar.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Based on a grammar that was automatically generated by nearley, version 2.19.2
|
|
2
2
|
import * as matchers from '@finnair/path';
|
|
3
|
-
import
|
|
3
|
+
import moo from 'moo';
|
|
4
4
|
const lexer = moo.compile({
|
|
5
5
|
qString: /'(?:\\["bfnrt\/\\]|\\u[a-fA-F0-9]{4}|[^"\\])*?'/,
|
|
6
6
|
qqString: /"(?:\\["bfnrt\/\\]|\\u[a-fA-F0-9]{4}|[^"\\])*?"/,
|
package/dist/pathGrammar.d.ts
CHANGED
package/dist/pathGrammar.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Based on a grammar that was automatically generated by nearley, version 2.19.2
|
|
2
2
|
// http://github.com/Hardmath123/nearley
|
|
3
|
-
import
|
|
3
|
+
import moo from 'moo';
|
|
4
4
|
const lexer = moo.compile({
|
|
5
5
|
qString: /'(?:\\["bfnrt\/\\]|\\u[a-fA-F0-9]{4}|[^"\\])*?'/,
|
|
6
6
|
qqString: /"(?:\\["bfnrt\/\\]|\\u[a-fA-F0-9]{4}|[^"\\])*?"/,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finnair/path-parser",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Simple object path as array of strings and numbers",
|
|
6
6
|
"type": "module",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"build": "tsc -b ."
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@finnair/path": "^5.0.
|
|
33
|
+
"@finnair/path": "^5.0.1",
|
|
34
34
|
"@types/moo": "0.5.1",
|
|
35
35
|
"@types/nearley": "2.11.2",
|
|
36
36
|
"nearley": "2.20.1"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "002badde317763fb6ec6a0350b0043d04cc07163"
|
|
39
39
|
}
|