@rollipop/plugin-rozenite 0.1.0-alpha.15 → 0.1.0-alpha.16
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/CHANGELOG.md +10 -0
- package/dist/index.js +1 -4
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @rollipop/plugin-rozenite
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [915ef17]
|
|
8
|
+
- Updated dependencies [a80492f]
|
|
9
|
+
- Updated dependencies [7ea2625]
|
|
10
|
+
- Updated dependencies [14ebb2c]
|
|
11
|
+
- rollipop@0.1.0-alpha.16
|
|
12
|
+
|
|
3
13
|
## 0.1.0-alpha.15
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import module from "node:module";
|
|
2
2
|
import { initializeRozenite } from "@rozenite/middleware";
|
|
3
3
|
import path from "node:path";
|
|
4
|
-
|
|
5
4
|
//#region src/patch.ts
|
|
6
5
|
const require = module.createRequire(import.meta.url);
|
|
7
6
|
function patchDevtoolsFrontendUrl(projectRoot) {
|
|
@@ -19,7 +18,6 @@ function getRollipopPath(projectRoot) {
|
|
|
19
18
|
function getDevMiddlewarePath(rollipopPath) {
|
|
20
19
|
return require.resolve("@react-native/dev-middleware", { paths: [rollipopPath] });
|
|
21
20
|
}
|
|
22
|
-
|
|
23
21
|
//#endregion
|
|
24
22
|
//#region src/plugin.ts
|
|
25
23
|
function rozenitePlugin(options = {}) {
|
|
@@ -38,6 +36,5 @@ function rozenitePlugin(options = {}) {
|
|
|
38
36
|
}
|
|
39
37
|
};
|
|
40
38
|
}
|
|
41
|
-
|
|
42
39
|
//#endregion
|
|
43
|
-
export { rozenitePlugin as rozenite };
|
|
40
|
+
export { rozenitePlugin as rozenite };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rollipop/plugin-rozenite",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.16",
|
|
4
4
|
"homepage": "https://github.com/leegeunhyeok/rollipop#readme",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/leegeunhyeok/rollipop/issues"
|
|
@@ -29,17 +29,17 @@
|
|
|
29
29
|
"scripts": {
|
|
30
30
|
"prepack": "yarn build",
|
|
31
31
|
"typecheck": "tsc --noEmit",
|
|
32
|
-
"build": "
|
|
32
|
+
"build": "vp pack"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@rozenite/middleware": "1.3.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"rollipop": "0.1.0-alpha.
|
|
39
|
-
"
|
|
40
|
-
"
|
|
38
|
+
"rollipop": "0.1.0-alpha.16",
|
|
39
|
+
"typescript": "5.9.3",
|
|
40
|
+
"vite-plus": "latest"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"rollipop": "0.1.0-alpha.
|
|
43
|
+
"rollipop": "0.1.0-alpha.16"
|
|
44
44
|
}
|
|
45
45
|
}
|