diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-05 13:46:06 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-05 13:46:06 +0900 |
| commit | c71b24987d2575c3640fcc9793e5c292cf9c9f0c (patch) | |
| tree | eab65fa0b27db0d219e2db7d607e58d3fca4032d | |
| parent | Update vue to 2.6.2 :rocket: (diff) | |
| download | misskey-c71b24987d2575c3640fcc9793e5c292cf9c9f0c.tar.gz misskey-c71b24987d2575c3640fcc9793e5c292cf9c9f0c.tar.bz2 misskey-c71b24987d2575c3640fcc9793e5c292cf9c9f0c.zip | |
Make index.js for more convinience
| -rw-r--r-- | index.js | 1 | ||||
| -rw-r--r-- | package.json | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/index.js b/index.js new file mode 100644 index 0000000000..5b7d1347aa --- /dev/null +++ b/index.js @@ -0,0 +1 @@ +require('./built'); diff --git a/package.json b/package.json index 168dc11742..6cdc695aef 100644 --- a/package.json +++ b/package.json @@ -4,11 +4,11 @@ "version": "10.81.0", "clientVersion": "2.0.14026", "codename": "nighthike", - "main": "./built/index.js", + "main": "./index.js", "private": true, "scripts": { - "start": "node ./built", - "debug": "DEBUG=misskey:* node ./built", + "start": "node ./index.js", + "debug": "DEBUG=misskey:* node ./index.js", "build": "webpack && gulp build", "webpack": "webpack", "watch": "webpack --watch", |