@sveltejs/kit 1.0.0-next.382 → 1.0.0-next.383

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/vite.js CHANGED
@@ -22,11 +22,9 @@ import 'perf_hooks';
22
22
  import 'util/types';
23
23
  import 'events';
24
24
  import 'tls';
25
- import './chunks/_commonjsHelpers.js';
26
25
  import 'async_hooks';
27
26
  import 'console';
28
27
  import 'zlib';
29
- import 'crypto';
30
28
  import 'node:http';
31
29
  import 'node:https';
32
30
  import 'node:zlib';
@@ -37,6 +35,7 @@ import 'node:url';
37
35
  import 'node:net';
38
36
  import 'node:fs';
39
37
  import 'node:path';
38
+ import 'crypto';
40
39
 
41
40
  /**
42
41
  * @param {import('vite').ConfigEnv} config_env
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sveltejs/kit",
3
- "version": "1.0.0-next.382",
3
+ "version": "1.0.0-next.383",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/sveltejs/kit",
@@ -87,7 +87,7 @@
87
87
  "lint": "prettier --check . --config ../../.prettierrc --ignore-path .gitignore",
88
88
  "check": "tsc",
89
89
  "check:all": "tsc && pnpm -r --filter=\"./**\" check",
90
- "format": "npm run check-format -- --write",
90
+ "format": "npm run lint -- --write",
91
91
  "test": "npm run test:unit && npm run test:typings && npm run test:packaging && npm run test:integration",
92
92
  "test:integration": "pnpm run -r --workspace-concurrency 1 --filter=\"./test/**\" test",
93
93
  "test:unit": "uvu src \"(spec\\.js|test[\\\\/]index\\.js)\" -i packaging",
@@ -1,3 +0,0 @@
1
- var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
2
-
3
- export { commonjsGlobal as c };