noshift.js 0.0.2 → 0.0.4
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/cli.js +1 -1
- package/commands/create.js +1 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
package/commands/create.js
CHANGED
|
@@ -126,7 +126,7 @@ export default async function create(projectNameArg) {
|
|
|
126
126
|
execSync("npm install noshift.js", { stdio: "inherit" });
|
|
127
127
|
|
|
128
128
|
await fs.mkdir("src", { recursive: true });
|
|
129
|
-
await fs.writeFile("src/
|
|
129
|
+
await fs.writeFile("src/index.nsjs", "console.log^8^2Hello World!^2^9;");
|
|
130
130
|
|
|
131
131
|
// README.md
|
|
132
132
|
const readme = lang === "ja"
|