@hiscovega/vundle 0.0.10 → 0.0.11

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 ADDED
@@ -0,0 +1,49 @@
1
+ # Changelog
2
+
3
+ ## [0.0.11](https://github.com/griddo/griddo-bundler/compare/v0.0.10...v0.0.11) (2025-09-24)
4
+
5
+ ## [0.0.10](https://github.com/griddo/griddo-bundler/compare/v0.0.9...v0.0.10) (2025-09-03)
6
+
7
+ ## [0.0.9](https://github.com/griddo/griddo-bundler/compare/v0.0.8...v0.0.9) (2025-09-03)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * use process.cwd() instead of __dirname to find client config and add better logging ([ee889de](https://github.com/griddo/griddo-bundler/commit/ee889deaeab374c581a2de83e8b0cfaca227a160))
13
+
14
+ ## [0.0.8](https://github.com/griddo/griddo-bundler/compare/v0.0.7...v0.0.8) (2025-09-03)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * use process.cwd() instead of __dirname for entry files to resolve correctly from client projects ([55c8d0b](https://github.com/griddo/griddo-bundler/commit/55c8d0b947d9f92dddef42963704427c7c86f6b9))
20
+
21
+ ## [0.0.7](https://github.com/griddo/griddo-bundler/compare/v0.0.6...v0.0.7) (2025-09-03)
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * use .mjs extension for plugins import to match actual file extension ([7660df8](https://github.com/griddo/griddo-bundler/commit/7660df832922bdcb586c01493007e22984385854))
27
+
28
+ ## [0.0.6](https://github.com/griddo/griddo-bundler/compare/v0.0.5...v0.0.6) (2025-09-03)
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * use explicit .js extension for plugins import to resolve correctly from client projects ([5c7ec02](https://github.com/griddo/griddo-bundler/commit/5c7ec0269eae522fbe1045654b2fb6c5595a0c3e))
34
+
35
+ ## 0.0.5 (2025-09-03)
36
+
37
+
38
+ ### Bug Fixes
39
+
40
+ * allow CHANGELOG.md to be tracked for release-it ([fdb6f45](https://github.com/griddo/griddo-bundler/commit/fdb6f45a63ee2b5537291c83deeff73e2c025fbc))
41
+ * change releaseNotes from 'auto' to true in release-it config ([007aa2f](https://github.com/griddo/griddo-bundler/commit/007aa2fd45b9d58216b32ad998f73541409257da))
42
+ * remove unnecessary build hook from release-it config ([eda4deb](https://github.com/griddo/griddo-bundler/commit/eda4debab057f88f45a54353bff488dfbb2b7cf7))
43
+
44
+ ## 0.0.4 (2025-09-03)
45
+
46
+
47
+ ### Bug Fixes
48
+
49
+ * remove unnecessary build hook from release-it config ([eda4deb](https://github.com/griddo/griddo-bundler/commit/eda4debab057f88f45a54353bff488dfbb2b7cf7))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiscovega/vundle",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "Master bundler configuration for Griddo Instance projects",
5
5
  "main": "vite.config.mjs",
6
6
  "module": "vite.config.mjs",
@@ -30,7 +30,8 @@
30
30
  "vite.config.mjs",
31
31
  "plugins/",
32
32
  "types/",
33
- "README.md"
33
+ "README.md",
34
+ "CHANGELOG.md"
34
35
  ],
35
36
  "scripts": {
36
37
  "remote:build": "vite build --config ./vite.config.mjs",
@@ -88,12 +89,12 @@
88
89
  "conventional-changelog"
89
90
  ],
90
91
  "author": "Griddo",
91
- "license": "MIT",
92
+ "license": "UNLICENSED",
92
93
  "engines": {
93
- "node": ">=18.0.0"
94
+ "node": ">=20.19"
94
95
  },
95
96
  "devDependencies": {
96
- "@biomejs/biome": "^2.2.2",
97
+ "@biomejs/biome": "2.2.4",
97
98
  "@release-it/conventional-changelog": "^10.0.1",
98
99
  "release-it": "^19.0.4"
99
100
  }
package/vite.config.mjs CHANGED
@@ -44,6 +44,7 @@ export default defineConfig(async ({ command, mode }) => {
44
44
  entry: {
45
45
  index: resolve(process.cwd(), "src/index.tsx"),
46
46
  builder: resolve(process.cwd(), "src/builder.jsx"),
47
+ "griddo.config": resolve(process.cwd(), "src/griddo.config.ts"),
47
48
  },
48
49
  formats: ["es"],
49
50
  name: "GriddoInstance",