mod-build 4.0.0-beta.1 → 4.0.0-beta.2
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/README.md +2 -9
- package/package.json +1 -1
- package/vite.config.js +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Mod-Build v4
|
|
1
|
+
# Mod-Build v4 Beta
|
|
2
2
|
|
|
3
3
|
## Requirements
|
|
4
4
|
|
|
@@ -16,11 +16,4 @@ Node 18+
|
|
|
16
16
|
|
|
17
17
|
## Static Assets
|
|
18
18
|
|
|
19
|
-
Static assets & images that should be copied with the build go in the `
|
|
20
|
-
|
|
21
|
-
## TODO
|
|
22
|
-
|
|
23
|
-
- Build/dist config
|
|
24
|
-
- CSS config / clean old styles
|
|
25
|
-
- Check Handlebars helpers
|
|
26
|
-
- Create updated versions of some accessible components (head, footer, etc)
|
|
19
|
+
Static assets & images that should be copied with the build go in the `assets/` directory and will be copied automatically.
|
package/package.json
CHANGED
package/vite.config.js
CHANGED
|
@@ -44,7 +44,7 @@ export default defineConfig((config) => ({
|
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
src: './src/accessible-components/expand-collapse/expand-collapse.min.js',
|
|
47
|
-
dest: './accessible-components/
|
|
47
|
+
dest: './accessible-components/expand-collapse'
|
|
48
48
|
},
|
|
49
49
|
{
|
|
50
50
|
src: './src/accessible-components/progress-bar/progress-bar.min.js',
|