silgi 0.41.51 → 0.41.53
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/dist/cli/build.mjs +2 -1
- package/dist/cli/index.mjs +1 -1
- package/package.json +1 -1
package/dist/cli/build.mjs
CHANGED
|
@@ -1578,7 +1578,8 @@ async function generateApp(app, options = {}) {
|
|
|
1578
1578
|
for (const template of app.templates) {
|
|
1579
1579
|
if (template.watch === false) {
|
|
1580
1580
|
if (Array.isArray(app.options.watchOptions.ignored)) {
|
|
1581
|
-
app.options.watchOptions.ignored.push(
|
|
1581
|
+
app.options.watchOptions.ignored.push(`${template.dst || template.src}`);
|
|
1582
|
+
app.options.devServer.watch.push(`!${template.dst || template.src}`);
|
|
1582
1583
|
}
|
|
1583
1584
|
}
|
|
1584
1585
|
if (options.filter && !options.filter(template)) {
|
package/dist/cli/index.mjs
CHANGED