Skip to content

Commit fdaead7

Browse files
committed
Init commit
Hello world script
0 parents  commit fdaead7

File tree

4 files changed

+32
-0
lines changed

4 files changed

+32
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env node
2+
3+
console.log("HELLO WORLD 123");

package-lock.json

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "create-stackbit-app",
3+
"version": "0.0.1",
4+
"description": "Create a new Stackbit site, or add Stackbit to an existing site.",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"keywords": [],
10+
"author": "Stackbit",
11+
"license": "MIT",
12+
"bin": {
13+
"create-stackbit-app": "./index.js"
14+
}
15+
}

0 commit comments

Comments
 (0)