@rollipop/init 0.1.0-alpha.15 → 0.1.0-alpha.17
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 +4 -0
- package/dist/index.js +1 -4
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -2,7 +2,6 @@ import pc from "picocolors";
|
|
|
2
2
|
import fs from "node:fs";
|
|
3
3
|
import path from "node:path";
|
|
4
4
|
import { Visitor, parseSync } from "oxc-parser";
|
|
5
|
-
|
|
6
5
|
//#region src/init.ts
|
|
7
6
|
const RN_CONFIG_FILE = "react-native.config.js";
|
|
8
7
|
const COMMANDS_REQUIRE = "require('rollipop/commands')";
|
|
@@ -91,7 +90,6 @@ function setupPackage(cwd) {
|
|
|
91
90
|
};
|
|
92
91
|
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2) + "\n");
|
|
93
92
|
}
|
|
94
|
-
|
|
95
93
|
//#endregion
|
|
96
94
|
//#region src/index.ts
|
|
97
95
|
const logger = {
|
|
@@ -149,6 +147,5 @@ logger.success(pc.bold("Setup completed!"));
|
|
|
149
147
|
console.log();
|
|
150
148
|
console.log(` ${pc.dim("Install dependencies manually to finish setup.")}`);
|
|
151
149
|
console.log(` ${pc.dim("See")} ${pc.underline(pc.cyan("https://rollipop.dev"))} ${pc.dim("for configuration details.")}`);
|
|
152
|
-
|
|
153
150
|
//#endregion
|
|
154
|
-
export {
|
|
151
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rollipop/init",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.17",
|
|
4
4
|
"homepage": "https://github.com/leegeunhyeok/rollipop#readme",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/leegeunhyeok/rollipop/issues"
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"execute": "node --import @oxc-node/core/register src/index.ts",
|
|
23
23
|
"prepack": "yarn build",
|
|
24
24
|
"typecheck": "tsc --noEmit",
|
|
25
|
-
"test": "
|
|
26
|
-
"build": "
|
|
25
|
+
"test": "vp test --run --passWithNoTests",
|
|
26
|
+
"build": "vp pack"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"oxc-parser": "^0.121.0",
|
|
@@ -31,8 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@oxc-node/core": "^0.0.35",
|
|
34
|
-
"tsdown": "0.20.3",
|
|
35
34
|
"typescript": "5.9.3",
|
|
36
|
-
"
|
|
35
|
+
"vite-plus": "latest"
|
|
37
36
|
}
|
|
38
37
|
}
|