Compare commits
No commits in common. "4d07cfac765d7252e41b7343c122c73bb7502651" and "003f32b6a4b5f143d4e2e79bea1f6b5238261a55" have entirely different histories.
4d07cfac76
...
003f32b6a4
3 changed files with 2 additions and 22 deletions
|
@ -1,13 +0,0 @@
|
|||
pipeline:
|
||||
install:
|
||||
image: node
|
||||
commands:
|
||||
- npm install
|
||||
build:
|
||||
image: node
|
||||
commands:
|
||||
- npm run build
|
||||
lint:
|
||||
image: node
|
||||
commands:
|
||||
- npm run lint
|
1
package-lock.json
generated
1
package-lock.json
generated
|
@ -17,7 +17,6 @@
|
|||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.23.1",
|
||||
"gulp": "^4.0.2",
|
||||
"rimraf": "^3.0.2",
|
||||
"ts-node": "^10.9.1",
|
||||
"upath": "^2.0.1"
|
||||
}
|
||||
|
|
10
package.json
10
package.json
|
@ -5,14 +5,9 @@
|
|||
"description": "A selfmade Connect Four game.",
|
||||
"author": "Manuel Thalmann <m@nuth.ch>",
|
||||
"scripts": {
|
||||
"gulp": "cross-env NODE_OPTIONS=\"--loader ts-node/esm\" gulp --",
|
||||
"build": "npm run gulp Build",
|
||||
"rebuild": "npm run clean && npm run build",
|
||||
"watch": "npm run gulp Watch",
|
||||
"clean": "rimraf ./lib",
|
||||
"gulp": "cross-env NODE_OPTIONS=\"--loader ts-node/esm\" gulp",
|
||||
"lint": "eslint --max-warnings 0 ./src .eslintrc.cjs",
|
||||
"lint-ide": "npm run lint || exit 0",
|
||||
"prepare": "npm run rebuild"
|
||||
"lint-ide": "npm run lint || exit 0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@manuth/eslint-plugin-typescript": "^4.0.0",
|
||||
|
@ -24,7 +19,6 @@
|
|||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.23.1",
|
||||
"gulp": "^4.0.2",
|
||||
"rimraf": "^3.0.2",
|
||||
"ts-node": "^10.9.1",
|
||||
"upath": "^2.0.1"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue