oxc-parser 0.34.0 → 0.35.0

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.
Files changed (2) hide show
  1. package/index.d.ts +1 -0
  2. package/package.json +11 -11
package/index.d.ts CHANGED
@@ -44,6 +44,7 @@ export interface ImportSpecifier {
44
44
  * * If this import keyword is a dynamic import, this is the start value.
45
45
  * * If this import keyword is a static import, this is -1.
46
46
  * * If this import keyword is an import.meta expression, this is -2.
47
+ * * If this import is an `export *`, this is -3.
47
48
  */
48
49
  d: number
49
50
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oxc-parser",
3
- "version": "0.34.0",
3
+ "version": "0.35.0",
4
4
  "description": "Oxc Parser Node API",
5
5
  "keywords": [
6
6
  "Parser"
@@ -23,17 +23,17 @@
23
23
  "index.js",
24
24
  "bindings.js"
25
25
  ],
26
- "devDependencies": {
27
- "@oxc-project/types": "^0.34.0"
26
+ "dependencies": {
27
+ "@oxc-project/types": "^0.35.0"
28
28
  },
29
29
  "optionalDependencies": {
30
- "@oxc-parser/binding-win32-x64-msvc": "0.34.0",
31
- "@oxc-parser/binding-win32-arm64-msvc": "0.34.0",
32
- "@oxc-parser/binding-linux-x64-gnu": "0.34.0",
33
- "@oxc-parser/binding-linux-arm64-gnu": "0.34.0",
34
- "@oxc-parser/binding-linux-x64-musl": "0.34.0",
35
- "@oxc-parser/binding-linux-arm64-musl": "0.34.0",
36
- "@oxc-parser/binding-darwin-x64": "0.34.0",
37
- "@oxc-parser/binding-darwin-arm64": "0.34.0"
30
+ "@oxc-parser/binding-win32-x64-msvc": "0.35.0",
31
+ "@oxc-parser/binding-win32-arm64-msvc": "0.35.0",
32
+ "@oxc-parser/binding-linux-x64-gnu": "0.35.0",
33
+ "@oxc-parser/binding-linux-arm64-gnu": "0.35.0",
34
+ "@oxc-parser/binding-linux-x64-musl": "0.35.0",
35
+ "@oxc-parser/binding-linux-arm64-musl": "0.35.0",
36
+ "@oxc-parser/binding-darwin-x64": "0.35.0",
37
+ "@oxc-parser/binding-darwin-arm64": "0.35.0"
38
38
  }
39
39
  }