@nextsparkjs/cli 0.1.0-beta.82 → 0.1.0-beta.83

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/bin/nextspark.js CHANGED
File without changes
package/dist/cli.js CHANGED
@@ -2390,6 +2390,7 @@ var REQUIRED_MOBILE_TEMPLATE_FILES = [
2390
2390
  var MOBILE_TEMPLATE_FILES = [
2391
2391
  "app",
2392
2392
  "src",
2393
+ "assets",
2393
2394
  "babel.config.js",
2394
2395
  "metro.config.js",
2395
2396
  "tailwind.config.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextsparkjs/cli",
3
- "version": "0.1.0-beta.82",
3
+ "version": "0.1.0-beta.83",
4
4
  "description": "NextSpark CLI - Complete development toolkit",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,6 +13,10 @@
13
13
  "bin",
14
14
  "templates"
15
15
  ],
16
+ "scripts": {
17
+ "build": "tsup src/cli.ts --format esm --dts --outDir dist",
18
+ "dev": "tsup src/cli.ts --format esm --watch"
19
+ },
16
20
  "dependencies": {
17
21
  "@inquirer/prompts": "^7.2.0",
18
22
  "@nextsparkjs/core": "^0.1.0-beta.75",
@@ -24,12 +28,12 @@
24
28
  "tar": "^7.0.0"
25
29
  },
26
30
  "devDependencies": {
31
+ "@nextsparkjs/core": "workspace:*",
27
32
  "@types/fs-extra": "^11.0.4",
28
33
  "@types/node": "^20.0.0",
29
34
  "@types/tar": "^6.1.0",
30
35
  "tsup": "^8.0.0",
31
- "typescript": "^5.0.0",
32
- "@nextsparkjs/core": "0.1.0-beta.79"
36
+ "typescript": "^5.0.0"
33
37
  },
34
38
  "keywords": [
35
39
  "nextspark",
@@ -46,9 +50,5 @@
46
50
  },
47
51
  "engines": {
48
52
  "node": ">=18.0.0"
49
- },
50
- "scripts": {
51
- "build": "tsup src/cli.ts --format esm --dts --outDir dist",
52
- "dev": "tsup src/cli.ts --format esm --watch"
53
53
  }
54
- }
54
+ }