create-ern-boilerplate 0.0.29 → 0.0.30

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.
Files changed (2) hide show
  1. package/create.js +0 -10
  2. package/package.json +1 -1
package/create.js CHANGED
@@ -1,15 +1,5 @@
1
1
  #!/usr/bin/env node
2
2
 
3
-
4
- const [major] = process.versions.node.split('.').map(Number);
5
- if (major < 16) {
6
- console.error(`\n❌ Node.js versi kamu ${major}`);
7
- console.error("\n❌ Node.js versi kamu terlalu lama untuk menjalankan CLI ini.");
8
- console.error(" Gunakan Node.js v18 atau lebih baru.");
9
- console.error(" Contoh: nvm install 18 && nvm use 18\n");
10
- process.exit(1);
11
- }
12
-
13
3
  import fs from "fs-extra";
14
4
  import path from "path";
15
5
  import { fileURLToPath } from "url";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ern-boilerplate",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "description": "Expo React Native boilerplate generator",
5
5
  "bin": {
6
6
  "create-ern-boilerplate": "./create.js",