Compare commits
3 commits
003f32b6a4
...
4d07cfac76
Author | SHA1 | Date | |
---|---|---|---|
4d07cfac76 | |||
cb9de981bb | |||
cb8cd5c550 |
3 changed files with 22 additions and 2 deletions
13
.woodpecker.yml
Normal file
13
.woodpecker.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
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,6 +17,7 @@
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"eslint": "^8.23.1",
|
"eslint": "^8.23.1",
|
||||||
"gulp": "^4.0.2",
|
"gulp": "^4.0.2",
|
||||||
|
"rimraf": "^3.0.2",
|
||||||
"ts-node": "^10.9.1",
|
"ts-node": "^10.9.1",
|
||||||
"upath": "^2.0.1"
|
"upath": "^2.0.1"
|
||||||
}
|
}
|
||||||
|
|
10
package.json
10
package.json
|
@ -5,9 +5,14 @@
|
||||||
"description": "A selfmade Connect Four game.",
|
"description": "A selfmade Connect Four game.",
|
||||||
"author": "Manuel Thalmann <m@nuth.ch>",
|
"author": "Manuel Thalmann <m@nuth.ch>",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"gulp": "cross-env NODE_OPTIONS=\"--loader ts-node/esm\" gulp",
|
"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",
|
||||||
"lint": "eslint --max-warnings 0 ./src .eslintrc.cjs",
|
"lint": "eslint --max-warnings 0 ./src .eslintrc.cjs",
|
||||||
"lint-ide": "npm run lint || exit 0"
|
"lint-ide": "npm run lint || exit 0",
|
||||||
|
"prepare": "npm run rebuild"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@manuth/eslint-plugin-typescript": "^4.0.0",
|
"@manuth/eslint-plugin-typescript": "^4.0.0",
|
||||||
|
@ -19,6 +24,7 @@
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"eslint": "^8.23.1",
|
"eslint": "^8.23.1",
|
||||||
"gulp": "^4.0.2",
|
"gulp": "^4.0.2",
|
||||||
|
"rimraf": "^3.0.2",
|
||||||
"ts-node": "^10.9.1",
|
"ts-node": "^10.9.1",
|
||||||
"upath": "^2.0.1"
|
"upath": "^2.0.1"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue