rebuildjs 0.60.2 → 0.60.3

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/package.json CHANGED
@@ -1,89 +1,90 @@
1
1
  {
2
- "name": "rebuildjs",
3
- "version": "0.60.2",
4
- "description": "Reactive esbuild...simple hackable alternative to vite for Multi Page Apps",
5
- "keywords": [
6
- "reactive",
7
- "multi page apps",
8
- "web app",
9
- "web server",
10
- "esbuild",
11
- "rmemo",
12
- "ctx-core"
13
- ],
14
- "homepage": "https://github.com/rebuildjs/rebuildjs#readme",
15
- "bugs": {
16
- "url": "https://github.com/rebuildjs/rebuildjs/issues"
17
- },
18
- "repository": {
19
- "type": "git",
20
- "url": "https://github.com/rebuildjs/rebuildjs.git"
21
- },
22
- "license": "Apache-2.0",
23
- "author": "Brian Takita",
24
- "type": "module",
25
- "files": [
26
- "*.d.ts",
27
- "*.js",
28
- "*.json",
29
- "_fixtures",
30
- "any",
31
- "browser",
32
- "types",
33
- "server"
34
- ],
35
- "exports": {
36
- ".": {
37
- "types": "./index.d.ts",
38
- "default": "./index.js"
39
- },
40
- "./any": {
41
- "types": "./any/index.d.ts",
42
- "default": "./any/index.js"
43
- },
44
- "./browser": {
45
- "types": "./browser/index.d.ts",
46
- "default": "./browser/index.js"
47
- },
48
- "./types": {
49
- "types": "./types/index.d.ts"
50
- },
51
- "./server": {
52
- "types": "./server/index.d.ts",
53
- "default": "./server/index.js"
54
- },
55
- "./package.json": "./package.json"
56
- },
57
- "dependencies": {
58
- "ctx-core": "^6.1.2",
59
- "elysia": "^0.8.16",
60
- "esbuild": "^0.20.0",
61
- "fdir": "^6.1.1",
62
- "picomatch": "^4.0.1"
63
- },
64
- "devDependencies": {
65
- "@typescript-eslint/eslint-plugin": "^6.21.0",
66
- "@typescript-eslint/parser": "^6.21.0",
67
- "c8": "^9.1.0",
68
- "check-dts": "^0.7.2",
69
- "eslint": "^8.56.0",
70
- "esmock": "^2.6.3",
71
- "tsx": "^4.7.1",
72
- "typescript": "next",
73
- "uvu": "^0.5.6"
74
- },
75
- "publishConfig": {
76
- "access": "public",
77
- "cache": "~/.npm"
78
- },
79
- "sideEffects": false,
80
- "scripts": {
81
- "build": ":",
82
- "clean": ":",
83
- "exec": "$@",
84
- "test": "pnpm test:unit && pnpm test:types",
85
- "test:types": "check-dts",
86
- "test:unit": "NODE_OPTIONS=--loader=esmock tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
87
- "test:unit:coverage": "c8 pnpm test:unit"
88
- }
2
+ "name": "rebuildjs",
3
+ "version": "0.60.3",
4
+ "description": "Reactive esbuild...simple hackable alternative to vite for Multi Page Apps",
5
+ "keywords": [
6
+ "reactive",
7
+ "multi page apps",
8
+ "web app",
9
+ "web server",
10
+ "esbuild",
11
+ "rmemo",
12
+ "ctx-core"
13
+ ],
14
+ "homepage": "https://github.com/rebuildjs/rebuildjs#readme",
15
+ "bugs": {
16
+ "url": "https://github.com/rebuildjs/rebuildjs/issues"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/rebuildjs/rebuildjs.git"
21
+ },
22
+ "license": "Apache-2.0",
23
+ "author": "Brian Takita",
24
+ "type": "module",
25
+ "files": [
26
+ "*.d.ts",
27
+ "*.js",
28
+ "*.json",
29
+ "_fixtures",
30
+ "any",
31
+ "browser",
32
+ "types",
33
+ "server"
34
+ ],
35
+ "exports": {
36
+ ".": {
37
+ "types": "./index.d.ts",
38
+ "default": "./index.js"
39
+ },
40
+ "./any": {
41
+ "types": "./any/index.d.ts",
42
+ "default": "./any/index.js"
43
+ },
44
+ "./browser": {
45
+ "types": "./browser/index.d.ts",
46
+ "default": "./browser/index.js"
47
+ },
48
+ "./types": {
49
+ "types": "./types/index.d.ts"
50
+ },
51
+ "./server": {
52
+ "types": "./server/index.d.ts",
53
+ "default": "./server/index.js"
54
+ },
55
+ "./package.json": "./package.json"
56
+ },
57
+ "scripts": {
58
+ "build": ":",
59
+ "clean": ":",
60
+ "exec": "$@",
61
+ "prepublishOnly": "pnpm clean && pnpm build && pnpm test",
62
+ "test": "pnpm test:unit && pnpm test:types",
63
+ "test:types": "check-dts",
64
+ "test:unit": "NODE_OPTIONS=--loader=esmock tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
65
+ "test:unit:coverage": "c8 pnpm test:unit"
66
+ },
67
+ "dependencies": {
68
+ "ctx-core": "^6.1.2",
69
+ "elysia": "^0.8.16",
70
+ "esbuild": "^0.20.0",
71
+ "fdir": "^6.1.1",
72
+ "picomatch": "^4.0.1"
73
+ },
74
+ "devDependencies": {
75
+ "@typescript-eslint/eslint-plugin": "^6.21.0",
76
+ "@typescript-eslint/parser": "^6.21.0",
77
+ "c8": "^9.1.0",
78
+ "check-dts": "^0.7.2",
79
+ "eslint": "^8.56.0",
80
+ "esmock": "^2.6.3",
81
+ "tsx": "^4.7.1",
82
+ "typescript": "next",
83
+ "uvu": "^0.5.6"
84
+ },
85
+ "publishConfig": {
86
+ "access": "public",
87
+ "cache": "~/.npm"
88
+ },
89
+ "sideEffects": false
89
90
  }
@@ -478,7 +478,7 @@ export function rebuildjs_plugin_() {
478
478
  await cmd(
479
479
  link(server_asset_path, browser_asset_path))
480
480
  return true
481
- })
481
+ }, 999_999_999)
482
482
  promise_a1.push(file_exists__waitfor(browser_asset_path))
483
483
  }
484
484
  await cmd(Promise.all(promise_a1))