Skip to content

Commit

Permalink
Sanity update dependencies (#60)
Browse files Browse the repository at this point in the history
* update all dependencies and release, release dev-toolkit as beta first

* bump to v7.0.1-2

* use `format` as separate npm command

* use format command

* bump version to 7.0.1

* update travis file and lint commands

* remove some unused tests

* bump to 7.0.2

* update paths in travis file
  • Loading branch information
stoikerty authored May 11, 2018
1 parent f10ee29 commit 15e2951
Show file tree
Hide file tree
Showing 14 changed files with 753 additions and 499 deletions.
30 changes: 2 additions & 28 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,7 @@ jobs:
- stage: Testing dev-toolkit...
env: Lint packages
script:
- cd src
- cd packages/babel-preset-dev-toolkit
- npm install
- npm run lint
- cd ../..

- cd packages/babel-runner
- cd src/packages/babel-runner
- npm install
- npm run lint
- cd ../..
Expand All @@ -63,30 +57,10 @@ jobs:
- npm run lint
- cd ../..

- cd packages/eslint-config-dev-toolkit
- npm install
- npm run lint

- stage: Testing dev-toolkit...
env: Lint templates
script:
- cd src
- cd templates/standard
- npm install
- npm run lint
- cd ../..

- cd templates/with-eslint
- npm install
- npm run lint
- cd ../..

- cd templates/with-sass
- npm install
- npm run lint
- cd ../..

- cd templates/serverless
- cd src/templates/with-eslint
- npm install
- npm run lint
- cd ../..
94 changes: 70 additions & 24 deletions src/packages/babel-preset-dev-toolkit/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 9 additions & 5 deletions src/packages/babel-preset-dev-toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
{
"name": "babel-preset-dev-toolkit",
"version": "1.0.2",
"version": "1.0.3",
"description": "Uses create-react-app default, adds sane if-statements & root-relative imports",
"main": "index.js",
"scripts": {
"lint": "prettier --write './**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1"
"format": "prettier --write './**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"prerelease": "npm version prerelease && npm publish --tag beta"
},
"repository": {
"type": "git",
Expand All @@ -27,11 +31,11 @@
"dependencies": {
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-module-resolver": "^3.1.0",
"babel-preset-env": "^1.6.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react-app": "^3.1.1",
"jsx-control-statements": "^3.2.8"
},
"devDependencies": {
"prettier": "^1.11.1"
"prettier": "^1.12.1"
}
}
Loading

0 comments on commit 15e2951

Please sign in to comment.