@site-index/vite-runtime 0.1.2 → 0.1.4

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.
@@ -12,7 +12,7 @@ export class RuntimeService {
12
12
  this.#serverConnection = serverConnection;
13
13
  }
14
14
  async buildArtifacts() {
15
- const run = this.#buildQueue.then(async () => this.#runBuildArtifacts(), async () => this.#runBuildArtifacts());
15
+ const run = this.#buildQueue.then(async () => this.#runBuildArtifacts());
16
16
  this.#buildQueue = run.then(() => { }, () => { });
17
17
  return run;
18
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@site-index/vite-runtime",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Vite-backed runtime for executing site-index pipelines.",
5
5
  "keywords": [
6
6
  "site-index",
@@ -43,7 +43,7 @@
43
43
  "typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.test.json"
44
44
  },
45
45
  "dependencies": {
46
- "@site-index/core": "0.1.2"
46
+ "@site-index/core": "0.1.4"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@vitest/coverage-v8": "^4.1.6",