create-ziko-app
Advanced tools
Comparing version 0.0.4 to 0.0.5
{ | ||
"name": "create-ziko-app", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "Easily create Ziko apps without any complicated build setup.", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -7,1 +7,26 @@ ## Quick Start | ||
``` | ||
## Output | ||
``` | ||
my-app | ||
├── README.md | ||
├── node_modules | ||
├── package.json | ||
├── .gitignore | ||
├── public | ||
│ ├── favicon.ico | ||
│ ├── index.html | ||
│ ├── manifest.json | ||
│ └── robots.txt | ||
├── config | ||
│ ├── build | ||
│ │ ├── rollup.config.js | ||
│ ├── dev | ||
│ │ ├── rollup.config.js | ||
└── src | ||
├── main.js | ||
``` | ||
## Scripts | ||
#### npm start | ||
#### npm run dev | ||
#### npm run build |
@@ -10,2 +10,4 @@ #!/usr/bin/env node | ||
copyFolder(TEMPLATE,path.join(process.cwd(),PROJECT_TITLE)); | ||
runCommand(`cd ${PROJECT_TITLE} && npm install`); | ||
runCommand(`cd ${PROJECT_TITLE} && npm install`); | ||
console.log("old one") |
@@ -5,6 +5,5 @@ { | ||
"description": "", | ||
"main": "index.js", | ||
"main": "src/main.js", | ||
"type": "module", | ||
"scripts": { | ||
"start": "node config/serve/index.js", | ||
"dev": "rollup -c config/dev/rollup.config.js", | ||
@@ -11,0 +10,0 @@ "watch": "rollup -c config/dev/rollup.config.js -w", |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
419374
1822
31
1