visualizer-on-tabs 1.0.0 → 1.0.1
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/main/index.js +3 -2
- package/package.json +4 -1
package/main/index.js
CHANGED
|
@@ -104,10 +104,11 @@ export default async (options) => {
|
|
|
104
104
|
|
|
105
105
|
const confPath = path.join(__dirname, '../src/config/custom.json');
|
|
106
106
|
console.log('Copying files');
|
|
107
|
+
|
|
108
|
+
await copyBootstrap(options);
|
|
109
|
+
await copyContent(options);
|
|
107
110
|
await Promise.all([
|
|
108
111
|
fs.writeFile(confPath, JSON.stringify(options.config)),
|
|
109
|
-
copyBootstrap(options),
|
|
110
|
-
copyContent(options),
|
|
111
112
|
addIndex(options),
|
|
112
113
|
addVisualizer(options),
|
|
113
114
|
]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "visualizer-on-tabs",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "visualizer-on-tabs webpack builder",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -51,5 +51,8 @@
|
|
|
51
51
|
},
|
|
52
52
|
"volta": {
|
|
53
53
|
"node": "24.7.0"
|
|
54
|
+
},
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=22"
|
|
54
57
|
}
|
|
55
58
|
}
|