rebuildjs 0.43.0 → 0.44.1
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/file_types/index.d.ts +0 -1
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +86 -89
- package/server/index.d.ts +0 -1
- package/server/index.js +0 -1
- package/file_types/index.js +0 -1
package/file_types/index.d.ts
CHANGED
package/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './any/index.js'
|
package/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './any/index.js'
|
package/package.json
CHANGED
|
@@ -1,90 +1,87 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
},
|
|
89
|
-
"sideEffects": false
|
|
90
|
-
}
|
|
2
|
+
"name": "rebuildjs",
|
|
3
|
+
"version": "0.44.1",
|
|
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
|
+
"file_types",
|
|
32
|
+
"server"
|
|
33
|
+
],
|
|
34
|
+
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"types": "./index.d.ts",
|
|
37
|
+
"default": "./index.js",
|
|
38
|
+
"module": "./index.js"
|
|
39
|
+
},
|
|
40
|
+
"./any": {
|
|
41
|
+
"types": "./any/index.d.ts",
|
|
42
|
+
"default": "./any/index.js",
|
|
43
|
+
"module": "./any/index.js"
|
|
44
|
+
},
|
|
45
|
+
"./file_types": {
|
|
46
|
+
"types": "./file_types/index.d.ts"
|
|
47
|
+
},
|
|
48
|
+
"./server": {
|
|
49
|
+
"types": "./server/index.d.ts",
|
|
50
|
+
"default": "./server/index.js",
|
|
51
|
+
"module": "./server/index.js"
|
|
52
|
+
},
|
|
53
|
+
"./package.json": "./package.json"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"ctx-core": "^5.25.3",
|
|
57
|
+
"elysia": "^0.8.9",
|
|
58
|
+
"esbuild": "^0.19.11",
|
|
59
|
+
"fdir": "^6.1.1",
|
|
60
|
+
"picomatch": "^3.0.1"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
64
|
+
"@typescript-eslint/parser": "^6.19.0",
|
|
65
|
+
"c8": "^9.1.0",
|
|
66
|
+
"check-dts": "^0.7.2",
|
|
67
|
+
"eslint": "^8.56.0",
|
|
68
|
+
"esmock": "^2.6.2",
|
|
69
|
+
"tsx": "^4.7.0",
|
|
70
|
+
"typescript": "next",
|
|
71
|
+
"uvu": "^0.5.6"
|
|
72
|
+
},
|
|
73
|
+
"publishConfig": {
|
|
74
|
+
"access": "public",
|
|
75
|
+
"cache": "~/.npm"
|
|
76
|
+
},
|
|
77
|
+
"sideEffects": false,
|
|
78
|
+
"scripts": {
|
|
79
|
+
"build": ":",
|
|
80
|
+
"clean": ":",
|
|
81
|
+
"exec": "$@",
|
|
82
|
+
"test": "pnpm test:unit && pnpm test:types",
|
|
83
|
+
"test:types": "check-dts",
|
|
84
|
+
"test:unit": "NODE_OPTIONS=--loader=esmock tsx node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
|
|
85
|
+
"test:unit:coverage": "c8 pnpm test:unit"
|
|
86
|
+
}
|
|
87
|
+
}
|
package/server/index.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ export * from './app/index.js'
|
|
|
4
4
|
export * from './asset/index.js'
|
|
5
5
|
export * from './build/index.js'
|
|
6
6
|
export * from './ctx/index.js'
|
|
7
|
-
export * from './index.d.js'
|
|
8
7
|
export * from './metafile/index.js'
|
|
9
8
|
export * from './metafile_l0/index.js'
|
|
10
9
|
export * from './middleware/index.js'
|
package/server/index.js
CHANGED
|
@@ -4,7 +4,6 @@ export * from './app/index.js'
|
|
|
4
4
|
export * from './asset/index.js'
|
|
5
5
|
export * from './build/index.js'
|
|
6
6
|
export * from './ctx/index.js'
|
|
7
|
-
export * from './index.d.js'
|
|
8
7
|
export * from './metafile/index.js'
|
|
9
8
|
export * from './metafile_l0/index.js'
|
|
10
9
|
export * from './middleware/index.js'
|
package/file_types/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {}
|