Skip to content

Commit

Permalink
upgrade base and build generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
dword-design committed Dec 4, 2019
1 parent 3698224 commit b665fc6
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 23 deletions.
14 changes: 8 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
.DS_Store
.editorconfig
.nyc_output
.vscode
coverage
dist
node_modules
/.babelrc
/.editorconfig
/.eslintrc.json
/.nyc_output
/.vscode
/coverage
/dist
/node_modules
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tasks:
- init: yarn
- init: yarn && yarn prepublishOnly

vscode:
extensions:
Expand Down
5 changes: 4 additions & 1 deletion .renovaterc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"rangeStrategy": "update-lockfile"
"lockFileMaintenance": {
"enabled": true,
"schedule": "at any time"
}
}
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
version: ~> 1.0
language: node_js
node_js:
- 11

import: dword-design/travis-config:dist/index.yml@master
after_script: "yarn add coveralls && cat ./coverage/lcov.info | coveralls"
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
{
"name": "@dword-design/babel-config",
"version": "1.0.2",
"main": "dist/index.js",
"bugs": {
"url": "https://github.com/dword-design/babel-config/issues"
},
"repository": "dword-design/babel-config",
"license": "MIT",
"author": "Sebastian Landwehr <info@dword-design.de>",
"contributors": [
"dword-design (http://www.dword-design.de)",
"Renovate Bot (http://renovatebot.com)"
],
"files": [
"dist"
],
"repository": "dword-design/babel-config",
"author": "Sebastian Landwehr <info@dword-design.de>",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"prepare": "base-node prepare",
"prepublishOnly": "base-node build",
"start": "base-node start",
"test": "base-node test"
},
Expand All @@ -28,12 +35,5 @@
"expect": "^24.9.0",
"with-local-tmp-dir": "^2.1.0"
},
"maintainers": [],
"contributors": [
"dword-design (http://www.dword-design.de)",
"Renovate Bot (http://renovatebot.com)"
],
"bugs": {
"url": "https://github.com/dword-design/babel-config/issues"
}
"maintainers": []
}

0 comments on commit b665fc6

Please sign in to comment.