@immense/vue-pom-generator 1.0.72 → 1.0.73
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/RELEASE_NOTES.md +38 -43
- package/dist/index.cjs +2 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -4
- package/dist/index.mjs.map +1 -1
- package/dist/plugin/internal/dev-plugin.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8294,12 +8294,10 @@ function createDevProcessorPlugin(options) {
|
|
|
8294
8294
|
regenerationSequence = currentRun.then(() => void 0, () => void 0);
|
|
8295
8295
|
return currentRun;
|
|
8296
8296
|
};
|
|
8297
|
-
const watchedVueGlobs = getSourceDirRoots().map((scanDirAbs) => path.resolve(scanDirAbs, "**", "*.vue"));
|
|
8298
|
-
const watchedPluginGlob = path.resolve(projectRootRef.current, "vite-plugins", "vue-pom-generator", "**", "*.ts");
|
|
8299
8297
|
const runtimeDir = path.dirname(basePageClassPath);
|
|
8298
|
+
const localPluginDir = path.resolve(projectRootRef.current, "vite-plugins", "vue-pom-generator");
|
|
8300
8299
|
server.watcher.add([
|
|
8301
|
-
...
|
|
8302
|
-
watchedPluginGlob,
|
|
8300
|
+
...fs.existsSync(localPluginDir) ? [localPluginDir] : [],
|
|
8303
8301
|
basePageClassPath,
|
|
8304
8302
|
path.resolve(runtimeDir, "pointer.ts"),
|
|
8305
8303
|
path.resolve(runtimeDir, "callout.ts"),
|