@hiscovega/vundle 0.0.11 → 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 +2 -0
- package/README.md +20 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.12](https://github.com/griddo/griddo-bundler/compare/v0.0.11...v0.0.12) (2025-10-16)
|
|
4
|
+
|
|
3
5
|
## [0.0.11](https://github.com/griddo/griddo-bundler/compare/v0.0.10...v0.0.11) (2025-09-24)
|
|
4
6
|
|
|
5
7
|
## [0.0.10](https://github.com/griddo/griddo-bundler/compare/v0.0.9...v0.0.10) (2025-09-03)
|
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",
|
|
@@ -48,13 +48,13 @@
|
|
|
48
48
|
"release:patch": "release-it patch"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@vitejs/plugin-react": "
|
|
52
|
-
"vite": "
|
|
53
|
-
"vite-plugin-dts": "
|
|
54
|
-
"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"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"@griddo/core": "
|
|
57
|
+
"@griddo/core": "latest",
|
|
58
58
|
"react": "^18.2.0",
|
|
59
59
|
"react-dom": "^18.2.0"
|
|
60
60
|
},
|