@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 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
 
@@ -1,4 +1,4 @@
1
- import * as moo from 'moo';
1
+ import moo from 'moo';
2
2
  interface NearleyRule {
3
3
  name: string;
4
4
  symbols: NearleySymbol[];
@@ -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 * as moo from 'moo';
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}|[^"\\])*?"/,
@@ -1,4 +1,4 @@
1
- import * as moo from 'moo';
1
+ import moo from 'moo';
2
2
  interface NearleyRule {
3
3
  name: string;
4
4
  symbols: NearleySymbol[];
@@ -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 * as moo from 'moo';
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.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.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": "b20762715a79e2a336f9c8ceb5107a4d84104a14"
38
+ "gitHead": "002badde317763fb6ec6a0350b0043d04cc07163"
39
39
  }