@uzuhq/code-cli 0.3.15 → 0.3.16
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/create-2d-game.js
CHANGED
|
@@ -46,11 +46,6 @@ export const create2dGame = (name) => {
|
|
|
46
46
|
console.log(`\nDone! Created ${name}/`);
|
|
47
47
|
console.log(`\nNext steps:`);
|
|
48
48
|
console.log(` cd ${name}`);
|
|
49
|
-
console.log('');
|
|
50
|
-
console.log(' # ~/.npmrc に GitHub Packages の認証設定がない場合:');
|
|
51
|
-
console.log(' echo "//npm.pkg.github.com/:_authToken=YOUR_GITHUB_TOKEN" >> ~/.npmrc');
|
|
52
|
-
console.log(' echo "@uzupj:registry=https://npm.pkg.github.com" >> ~/.npmrc');
|
|
53
|
-
console.log('');
|
|
54
49
|
console.log(` npm install`);
|
|
55
50
|
console.log(` npm run dev`);
|
|
56
51
|
};
|