Skip to content

Commit 65ff3b0

Browse files
committed
chore(config): simplify
1 parent 1310422 commit 65ff3b0

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
language: node_js
22
node_js:
3-
- lts/*
4-
- node
3+
- 10
4+
- 12
5+
- 14
56

67
script:
7-
- npm run lint
88
- npm run build
9+
- npm run lint
910

1011
deploy:
1112
- provider: npm
1213
edge: true
13-
run_script: publish
1414
on:
1515
tags: true
16-
node_js: lts/*
16+
node_js: 12

package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,10 @@
3131
"scripts": {
3232
"build": "rollup --config --sourcemap",
3333
"commit": "git-cz",
34-
"format": "prettier --ignore-path .gitignore --write \"**/*.{ts,tsx,js,json,yml,md}\"",
34+
"format": "prettier --ignore-path .gitignore --write .",
3535
"lint": "eslint --ignore-path .gitignore \"**/*.{ts,tsx,js}\"",
36-
"publish": "cd ./pkg/ && npm publish",
3736
"release": "standard-version",
38-
"type-check": "tsc --noEmit",
39-
"version": "npm run build"
37+
"type-check": "tsc --noEmit"
4038
},
4139
"husky": {
4240
"hooks": {

0 commit comments

Comments
 (0)