@stacksjs/build 0.70.78 → 0.70.80

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/build",
3
3
  "type": "module",
4
- "version": "0.70.78",
4
+ "version": "0.70.80",
5
5
  "description": "The Stacks framework build tools and configurations.",
6
6
  "author": "Chris Breuer",
7
7
  "contributors": [
@@ -51,15 +51,12 @@
51
51
  "typecheck": "bun tsc --noEmit",
52
52
  "prepublishOnly": "bun run build"
53
53
  },
54
- "dependencies": {
55
- "@babel/generator": "^7.29.1",
56
- "@babel/traverse": "^7.29.0"
57
- },
54
+ "dependencies": {},
58
55
  "devDependencies": {
59
- "@stacksjs/cli": "0.70.78",
56
+ "@stacksjs/cli": "0.70.80",
60
57
  "better-dx": "^0.2.16",
61
- "@stacksjs/path": "0.70.78",
62
- "@stacksjs/storage": "0.70.78",
58
+ "@stacksjs/path": "0.70.80",
59
+ "@stacksjs/storage": "0.70.80",
63
60
  "vue-docgen-web-types": "^0.1.8"
64
61
  }
65
62
  }
package/dist/utils.d.ts DELETED
@@ -1,12 +0,0 @@
1
- // @babel/generator and @babel/traverse ship default exports that
2
- // TypeScript can't see because the package's `.d.ts` declares them
3
- // as namespace re-exports. The runtime shape is correct under
4
- // `esModuleInterop`; the ignore is the cheapest fix until upstream
5
- // publishes proper module-default declarations.
6
- // eslint-disable-next-line ts/ban-ts-comment
7
- // @ts-ignore — upstream .d.ts lacks default export declaration
8
- export { default as generator } from '@babel/generator';
9
- export { default as parser } from '@babel/parser';
10
- // eslint-disable-next-line ts/ban-ts-comment
11
- // @ts-ignore — upstream .d.ts lacks default export declaration
12
- export { default as traverse } from '@babel/traverse';