create-asciitorium 0.1.7 → 0.1.9
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/dist/index.js
CHANGED
|
@@ -64,7 +64,7 @@ async function main() {
|
|
|
64
64
|
console.log(dim(`…skipping install (unable to run ${pm})`));
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
|
-
const runDev = pm === 'npm' ? 'npm run
|
|
67
|
+
const runDev = pm === 'npm' ? 'npm run web' : `${pm} web`;
|
|
68
68
|
console.log(`\n${green('Done!')} Next steps:\n`);
|
|
69
69
|
console.log(` cd ${target}`);
|
|
70
70
|
console.log(` ${runDev}\n`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-asciitorium",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Scaffold a Vite + TypeScript project prewired for asciitorium (web + cli).",
|
|
6
6
|
"bin": {
|
|
@@ -13,12 +13,6 @@
|
|
|
13
13
|
"README.md",
|
|
14
14
|
"LICENSE"
|
|
15
15
|
],
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build": "tsc -p tsconfig.json",
|
|
18
|
-
"postbuild": "cp -r templates dist/",
|
|
19
|
-
"dev": "tsx watch src/index.ts",
|
|
20
|
-
"prepublishOnly": "pnpm run build"
|
|
21
|
-
},
|
|
22
16
|
"dependencies": {
|
|
23
17
|
"asciitorium": "",
|
|
24
18
|
"execa": "^9.3.0",
|
|
@@ -38,5 +32,10 @@
|
|
|
38
32
|
},
|
|
39
33
|
"publishConfig": {
|
|
40
34
|
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsc -p tsconfig.json",
|
|
38
|
+
"postbuild": "cp -r templates dist/",
|
|
39
|
+
"dev": "tsx watch src/index.ts"
|
|
41
40
|
}
|
|
42
|
-
}
|
|
41
|
+
}
|