-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: upgrade to babel-plugin-macros and add keyword
- Loading branch information
Kent C. Dodds
committed
Jan 18, 2018
1 parent
1eb6e01
commit ba2e5ab
Showing
11 changed files
with
69 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,9 @@ | ||
sudo: false | ||
language: node_js | ||
cache: | ||
directories: | ||
- ~/.npm | ||
notifications: | ||
email: false | ||
node_js: '8' | ||
install: npm install | ||
script: npm run validate | ||
after_success: | ||
- npx codecov | ||
- npx -p semantic-release@8 -c "semantic-release pre && npm publish && semantic-release post" | ||
after_success: kcd-scripts travis-after-success | ||
branches: | ||
only: master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "import-all.macro", | ||
"version": "0.0.0-semantically-released", | ||
"description": | ||
"A babel-macro that allows you to import all files that match a glob", | ||
"A macro for babel-plugin-macros that allows you to import all files that match a glob", | ||
"main": "dist/index.js", | ||
"engines": { | ||
"node": "> 4", | ||
|
@@ -18,21 +18,24 @@ | |
"precommit": "kcd-scripts precommit" | ||
}, | ||
"files": ["dist"], | ||
"keywords": [], | ||
"keywords": ["babel-plugin-macros"], | ||
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)", | ||
"license": "MIT", | ||
"dependencies": { | ||
"babel-macros": "^1.2.0", | ||
"babel-plugin-macros": "^2.0.0", | ||
"glob": "^7.1.2" | ||
}, | ||
"devDependencies": { | ||
"ast-pretty-print": "^2.0.1", | ||
"babel-plugin-tester": "^4.0.0", | ||
"kcd-scripts": "^0.16.0", | ||
"prettier": "^1.7.0" | ||
"babel-plugin-tester": "^5.0.0", | ||
"kcd-scripts": "^0.32.1", | ||
"prettier": "^1.10.2" | ||
}, | ||
"eslintConfig": { | ||
"extends": "./node_modules/kcd-scripts/eslint.js" | ||
"extends": "./node_modules/kcd-scripts/eslint.js", | ||
"rules": { | ||
"complexity": ["error", 12] | ||
} | ||
}, | ||
"eslintIgnore": ["node_modules", "coverage", "dist"], | ||
"repository": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters