@hiscovega/vundle 0.0.10 → 0.0.12
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 +51 -0
- package/README.md +20 -1
- package/package.json +11 -10
- package/vite.config.mjs +1 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.0.12](https://github.com/griddo/griddo-bundler/compare/v0.0.11...v0.0.12) (2025-10-16)
|
|
4
|
+
|
|
5
|
+
## [0.0.11](https://github.com/griddo/griddo-bundler/compare/v0.0.10...v0.0.11) (2025-09-24)
|
|
6
|
+
|
|
7
|
+
## [0.0.10](https://github.com/griddo/griddo-bundler/compare/v0.0.9...v0.0.10) (2025-09-03)
|
|
8
|
+
|
|
9
|
+
## [0.0.9](https://github.com/griddo/griddo-bundler/compare/v0.0.8...v0.0.9) (2025-09-03)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* use process.cwd() instead of __dirname to find client config and add better logging ([ee889de](https://github.com/griddo/griddo-bundler/commit/ee889deaeab374c581a2de83e8b0cfaca227a160))
|
|
15
|
+
|
|
16
|
+
## [0.0.8](https://github.com/griddo/griddo-bundler/compare/v0.0.7...v0.0.8) (2025-09-03)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* use process.cwd() instead of __dirname for entry files to resolve correctly from client projects ([55c8d0b](https://github.com/griddo/griddo-bundler/commit/55c8d0b947d9f92dddef42963704427c7c86f6b9))
|
|
22
|
+
|
|
23
|
+
## [0.0.7](https://github.com/griddo/griddo-bundler/compare/v0.0.6...v0.0.7) (2025-09-03)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* use .mjs extension for plugins import to match actual file extension ([7660df8](https://github.com/griddo/griddo-bundler/commit/7660df832922bdcb586c01493007e22984385854))
|
|
29
|
+
|
|
30
|
+
## [0.0.6](https://github.com/griddo/griddo-bundler/compare/v0.0.5...v0.0.6) (2025-09-03)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* use explicit .js extension for plugins import to resolve correctly from client projects ([5c7ec02](https://github.com/griddo/griddo-bundler/commit/5c7ec0269eae522fbe1045654b2fb6c5595a0c3e))
|
|
36
|
+
|
|
37
|
+
## 0.0.5 (2025-09-03)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Bug Fixes
|
|
41
|
+
|
|
42
|
+
* allow CHANGELOG.md to be tracked for release-it ([fdb6f45](https://github.com/griddo/griddo-bundler/commit/fdb6f45a63ee2b5537291c83deeff73e2c025fbc))
|
|
43
|
+
* change releaseNotes from 'auto' to true in release-it config ([007aa2f](https://github.com/griddo/griddo-bundler/commit/007aa2fd45b9d58216b32ad998f73541409257da))
|
|
44
|
+
* remove unnecessary build hook from release-it config ([eda4deb](https://github.com/griddo/griddo-bundler/commit/eda4debab057f88f45a54353bff488dfbb2b7cf7))
|
|
45
|
+
|
|
46
|
+
## 0.0.4 (2025-09-03)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Bug Fixes
|
|
50
|
+
|
|
51
|
+
* remove unnecessary build hook from release-it config ([eda4deb](https://github.com/griddo/griddo-bundler/commit/eda4debab057f88f45a54353bff488dfbb2b7cf7))
|
package/README.md
CHANGED
|
@@ -33,4 +33,23 @@ export default {
|
|
|
33
33
|
],
|
|
34
34
|
}
|
|
35
35
|
};
|
|
36
|
-
```
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Salida del bundle
|
|
39
|
+
|
|
40
|
+
El bundle exporta cuatro elementos:
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
dist/index.js # Antiguo src/index.js de la instancia: templates, modules, components, contextos, etc..
|
|
44
|
+
dist/builder.js # Archivos relacionados con Gatsby: antiguos builder.browser.jsx, builder.ssr.jsx y builder.config.js
|
|
45
|
+
dist/griddo.config.js # Antiguo griddo.config.ts
|
|
46
|
+
dist/builder.css # Todo el css de la instancia empaquetado
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
Para importarlos en AX / CX
|
|
51
|
+
import { SiteProvider, bundle, components, formsTemplates, templates } from "<bundle>"
|
|
52
|
+
import { browser, config, ssr } from "<bundle>/builder"
|
|
53
|
+
import griddoConfig from "<bundle>/griddo.config"
|
|
54
|
+
import "<bundle>/builder.css"
|
|
55
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hiscovega/vundle",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
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",
|
|
@@ -47,13 +48,13 @@
|
|
|
47
48
|
"release:patch": "release-it patch"
|
|
48
49
|
},
|
|
49
50
|
"dependencies": {
|
|
50
|
-
"@vitejs/plugin-react": "
|
|
51
|
-
"vite": "
|
|
52
|
-
"vite-plugin-dts": "
|
|
53
|
-
"vite-plugin-static-copy": "
|
|
51
|
+
"@vitejs/plugin-react": "5.0.4",
|
|
52
|
+
"vite": "7.1.10",
|
|
53
|
+
"vite-plugin-dts": "4.5.4",
|
|
54
|
+
"vite-plugin-static-copy": "3.1.4"
|
|
54
55
|
},
|
|
55
56
|
"peerDependencies": {
|
|
56
|
-
"@griddo/core": "
|
|
57
|
+
"@griddo/core": "latest",
|
|
57
58
|
"react": "^18.2.0",
|
|
58
59
|
"react-dom": "^18.2.0"
|
|
59
60
|
},
|
|
@@ -88,12 +89,12 @@
|
|
|
88
89
|
"conventional-changelog"
|
|
89
90
|
],
|
|
90
91
|
"author": "Griddo",
|
|
91
|
-
"license": "
|
|
92
|
+
"license": "UNLICENSED",
|
|
92
93
|
"engines": {
|
|
93
|
-
"node": ">=
|
|
94
|
+
"node": ">=20.19"
|
|
94
95
|
},
|
|
95
96
|
"devDependencies": {
|
|
96
|
-
"@biomejs/biome": "
|
|
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",
|