@absolutejs/absolute 0.18.2-beta.6 → 0.18.2-beta.8
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/.absolutejs/prettier.cache.json +4 -4
- package/dist/build.js +3 -1
- package/dist/build.js.map +4 -4
- package/dist/index.js +4 -1
- package/dist/index.js.map +5 -5
- package/dist/src/core/prepare.d.ts +1 -0
- package/dist/src/dev/clientManager.d.ts +1 -0
- package/dist/src/plugins/hmr.d.ts +1 -0
- package/package.json +1 -1
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"src/dev/moduleMapper.ts": "10zky8nrgm0ci",
|
|
39
39
|
"src/dev/assetStore.ts": "o3wejryqyd99",
|
|
40
40
|
"src/dev/configResolver.ts": "giuupkq3gsa8",
|
|
41
|
-
"src/dev/clientManager.ts": "
|
|
41
|
+
"src/dev/clientManager.ts": "3kwpqxe7qdaxk",
|
|
42
42
|
"src/dev/moduleVersionTracker.ts": "gfmvht1sqtsc",
|
|
43
43
|
"src/dev/buildHMRClient.ts": "136cv374pj1zu",
|
|
44
44
|
"src/dev/webSocket.ts": "qssmddc489zr",
|
|
@@ -87,13 +87,13 @@
|
|
|
87
87
|
"src/vue/pageHandler.ts": "3j5xvetjyii9p",
|
|
88
88
|
"src/vue/index.ts": "2hz43zpct7mgi",
|
|
89
89
|
"src/core/devVendorPaths.ts": "1n8mzzxtyk99u",
|
|
90
|
-
"src/core/devBuild.ts": "
|
|
90
|
+
"src/core/devBuild.ts": "1n1m22vb3n5cr",
|
|
91
91
|
"src/core/prepare.ts": "2qtxdqcmxdc70",
|
|
92
92
|
"src/core/lookup.ts": "26sxtbdzs5myx",
|
|
93
93
|
"src/core/index.ts": "2e2493pkqrfdy",
|
|
94
94
|
"src/core/pageHandlers.ts": "1jlijcbl0effl",
|
|
95
95
|
"src/core/build.ts": "26u12yfeq6zw0",
|
|
96
|
-
"src/plugins/hmr.ts": "
|
|
96
|
+
"src/plugins/hmr.ts": "3qq5qdlchkmmk",
|
|
97
97
|
"src/plugins/pageRouter.ts": "3jxn113qj8nv0",
|
|
98
98
|
"src/plugins/index.ts": "hsx259t1qz8u",
|
|
99
99
|
"src/plugins/networking.ts": "1t902uhxe14ka",
|
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
"example/angular/compiled/components/counter.component.js": "2oew7n0s1wzck",
|
|
180
180
|
"eslint.config.mjs": "kk4n5twg4v4r",
|
|
181
181
|
"tsconfig.json": "3pf54bnsv1pxc",
|
|
182
|
-
"package.json": "
|
|
182
|
+
"package.json": "12a5w8qm83a7y",
|
|
183
183
|
"tsconfig.build.json": "976e92rva922",
|
|
184
184
|
"example/svelte/pages/SvelteExample.svelte": "18y2nvi52u8ps",
|
|
185
185
|
"example/svelte/components/Counter.svelte": "1p92uo1pko0wo",
|
package/dist/build.js
CHANGED
|
@@ -171674,6 +171674,7 @@ var createHMRState = (config) => ({
|
|
|
171674
171674
|
resolvedPaths: resolveBuildPaths(config),
|
|
171675
171675
|
sourceFileVersions: new Map,
|
|
171676
171676
|
vueChangeTypes: new Map,
|
|
171677
|
+
rebuildCount: 0,
|
|
171677
171678
|
watchers: []
|
|
171678
171679
|
}), incrementSourceFileVersion = (state, filePath) => {
|
|
171679
171680
|
const currentVersion = state.sourceFileVersions.get(filePath) || 0;
|
|
@@ -173611,6 +173612,7 @@ var FRAMEWORK_DIR_KEYS, reloadConfig = async () => {
|
|
|
173611
173612
|
await populateAssetStore(state.assetStore, cached.manifest, state.resolvedPaths.buildDir);
|
|
173612
173613
|
await cleanStaleAssets(state.assetStore, cached.manifest, state.resolvedPaths.buildDir);
|
|
173613
173614
|
}
|
|
173615
|
+
state.rebuildCount++;
|
|
173614
173616
|
} catch {} finally {
|
|
173615
173617
|
state.isRebuilding = false;
|
|
173616
173618
|
state.fileChangeQueue.clear();
|
|
@@ -173747,5 +173749,5 @@ export {
|
|
|
173747
173749
|
build
|
|
173748
173750
|
};
|
|
173749
173751
|
|
|
173750
|
-
//# debugId=
|
|
173752
|
+
//# debugId=42C008866750238564756E2164756E21
|
|
173751
173753
|
//# sourceMappingURL=build.js.map
|