@videinfra/static-website-builder 2.0.0-beta.4 → 2.0.0
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/package.json +1 -1
- package/vendor/gulp-rolldown/index.js +1 -4
- package/.eslintignore +0 -2
package/package.json
CHANGED
|
@@ -119,10 +119,7 @@ class GulpRolldown extends Transform {
|
|
|
119
119
|
|
|
120
120
|
// Set input files
|
|
121
121
|
inputOptions.input = Object.keys(entryContent);
|
|
122
|
-
inputOptions.plugins = [
|
|
123
|
-
rawPlugin(),
|
|
124
|
-
virtualEntryPlugin(entryContent),
|
|
125
|
-
].concat(inputOptions.plugins || []);
|
|
122
|
+
inputOptions.plugins = [rawPlugin(), virtualEntryPlugin(entryContent)].concat(inputOptions.plugins || []);
|
|
126
123
|
|
|
127
124
|
// Set full paths when running watch or build
|
|
128
125
|
inputOptions.output = outputOptions;
|
package/.eslintignore
DELETED