chore: Do not build bin script.

This commit is contained in:
Ruben Verborgh 2020-12-07 17:39:32 +01:00 committed by Joachim Van Herwegen
parent 038d5728e3
commit 0f56b715ae
4 changed files with 4 additions and 6 deletions

3
bin/server.js Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env node
const { runCli } = require("..");
runCli();

View File

@ -1,3 +0,0 @@
#!/usr/bin/env node
import { runCli } from '../src/init/CliRunner';
runCli();

View File

@ -55,7 +55,7 @@
"test:unit": "jest test/unit",
"validate": "componentsjs-compile-config urn:solid-server:default -c config/config-default.json -f > /dev/null",
"version": "manual-git-changelog onversion",
"watch": "nodemon --watch \"src/**/*.js\" --watch \"bin/**/*.js\" --exec npm start"
"watch": "nodemon --watch \"src/**/*.js\" --exec npm start"
},
"husky": {
"hooks": {
@ -66,7 +66,6 @@
"index.js",
"index.d.ts",
"bin/*.js",
"bin/*.d.ts",
"src/**/*.js",
"src/**/*.d.ts",
"components/**/*.jsonld",

View File

@ -15,7 +15,6 @@
},
"include": [
"index.ts",
"bin/**/*.ts",
"src/**/*.ts",
"test/**/*.ts"
],