@sveltejs/kit 1.0.0-next.375 → 1.0.0-next.376

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.js CHANGED
@@ -18,7 +18,7 @@ function handle_error(e) {
18
18
  process.exit(1);
19
19
  }
20
20
 
21
- const prog = sade('svelte-kit').version('1.0.0-next.375');
21
+ const prog = sade('svelte-kit').version('1.0.0-next.376');
22
22
 
23
23
  prog
24
24
  .command('package')
package/dist/vite.js CHANGED
@@ -3014,6 +3014,9 @@ function kit() {
3014
3014
  * Clears the output directories.
3015
3015
  */
3016
3016
  buildStart() {
3017
+ // Reset for new build. Goes here because `build --watch` calls buildStart but not config
3018
+ completed_build = false;
3019
+
3017
3020
  if (is_build) {
3018
3021
  rimraf(paths.build_dir);
3019
3022
  mkdirp(paths.build_dir);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sveltejs/kit",
3
- "version": "1.0.0-next.375",
3
+ "version": "1.0.0-next.376",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/sveltejs/kit",