@tishlang/create-tish-app 1.1.3 → 1.3.1

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/index.js +3 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -74,10 +74,10 @@ npx @tishlang/tish run src/main.tish
74
74
  # or after installing: tish run src/main.tish
75
75
  \`\`\`
76
76
 
77
- ## Compile to native
77
+ ## Build to native
78
78
 
79
79
  \`\`\`bash
80
- npx @tishlang/tish compile src/main.tish -o app
80
+ npx @tishlang/tish build src/main.tish -o app
81
81
  ./app
82
82
  \`\`\`
83
83
  `,
@@ -92,7 +92,7 @@ npx @tishlang/tish compile src/main.tish -o app
92
92
  console.log('Next steps:');
93
93
  console.log(` cd ${name}`);
94
94
  console.log(' npx @tishlang/tish run src/main.tish');
95
- console.log(' # or: npx @tishlang/tish compile src/main.tish -o app && ./app');
95
+ console.log(' # or: npx @tishlang/tish build src/main.tish -o app && ./app');
96
96
  }
97
97
 
98
98
  main().catch(err => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tishlang/create-tish-app",
3
- "version": "1.1.3",
3
+ "version": "1.3.1",
4
4
  "description": "Scaffold a new Tish project",
5
5
  "license": "SEE LICENSE IN ../../../LICENSE",
6
6
  "repository": {