@rpack-dev/core 0.1.14 → 0.1.15
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/README.md +30 -0
- package/dist/docs.json +48066 -0
- package/dist/rpack-core-esm.bundle.js +1 -1
- package/dist/rpack-core-umd.bundle.js +1 -1
- package/dist/rpack-core.d.ts +4 -0
- package/package.json +11 -9
package/dist/rpack-core.d.ts
CHANGED
|
@@ -821,6 +821,10 @@ export interface DevPluginSourceServerManifest {
|
|
|
821
821
|
protocolVersion: number;
|
|
822
822
|
brand: string;
|
|
823
823
|
version: string;
|
|
824
|
+
overrides?: {
|
|
825
|
+
secret: string;
|
|
826
|
+
modules: Record<string, boolean | undefined>;
|
|
827
|
+
};
|
|
824
828
|
websocketRefresh?: boolean;
|
|
825
829
|
}
|
|
826
830
|
export interface H2WHelloRequestPacket extends NoncePacket {
|
package/package.json
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rpack-dev/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "LGPL-3.0-or-later",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/rpack-dev/rpack-dev.git"
|
|
9
9
|
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "tsx node_modules/jasmine/bin/jasmine --config=jasmine.json",
|
|
12
|
+
"prebuild:barrel": "ctix build",
|
|
13
|
+
"prebuild:docs": "npx typedoc --json dist/docs.json ./src/RPack.ts",
|
|
14
|
+
"prebuild": "npm run prebuild:barrel && npm run prebuild:docs",
|
|
15
|
+
"build": "webpack build --mode=production",
|
|
16
|
+
"watch": "webpack watch --mode=development"
|
|
17
|
+
},
|
|
10
18
|
"main": "dist/rpack-core-umd.bundle.js",
|
|
11
19
|
"module": "dist/rpack-core-esm.bundle.js",
|
|
12
20
|
"types": "dist/rpack-core.d.ts",
|
|
@@ -20,15 +28,8 @@
|
|
|
20
28
|
"files": [
|
|
21
29
|
"./dist/*",
|
|
22
30
|
"LICENSE",
|
|
23
|
-
"README.
|
|
31
|
+
"README.md"
|
|
24
32
|
],
|
|
25
|
-
"scripts": {
|
|
26
|
-
"test": "tsx node_modules/jasmine/bin/jasmine --config=jasmine.json",
|
|
27
|
-
"barrel": "ctix build",
|
|
28
|
-
"prebuild": "ctix build",
|
|
29
|
-
"build": "webpack build --mode=production",
|
|
30
|
-
"watch": "webpack watch --mode=development"
|
|
31
|
-
},
|
|
32
33
|
"devDependencies": {
|
|
33
34
|
"@babel/core": "^7.24.3",
|
|
34
35
|
"@babel/preset-env": "^7.24.3",
|
|
@@ -45,6 +46,7 @@
|
|
|
45
46
|
"npm-dts-webpack-plugin": "^1.3.13",
|
|
46
47
|
"ts-loader": "^9.5.2",
|
|
47
48
|
"tsx": "^4.19.4",
|
|
49
|
+
"typedoc": "^0.28.10",
|
|
48
50
|
"typescript": "^5.0.0",
|
|
49
51
|
"webpack": "^5.90.3",
|
|
50
52
|
"webpack-cli": "^5.1.4",
|