Skip to content

Commit

Permalink
Preparing to publish.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterp committed Jun 30, 2019
1 parent 91dc504 commit 72015c2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
// It is important to note that @babel/preset-env does not support stage-x plugins
{
targets: {
node: true,
node: '10.16.0',
},
useBuiltIns: 'usage',
corejs: 3,
Expand All @@ -19,4 +19,5 @@ module.exports = {
['@babel/plugin-proposal-export-default-from'],
['@babel/plugin-proposal-object-rest-spread'],
],
ignore: ['**/*.test.js'],
};
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"packages": ["packages/*"],
"version": "0.0.0",
"version": "0.0.0-alpha.0",
"npmClient": "yarn"
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"prettier": "^1.18.2"
},
"scripts": {
"build": "lerna run build",
"test": "lerna run test -- --colors"
}
}
4 changes: 3 additions & 1 deletion packages/hammer-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@
"dist"
],
"scripts": {
"build": "babel src --out-dir dist",
"hammer": "babel-node src/index.js",
"dev": "nodemon --exec babel-node src/index.js",
"test": "jest",
"test:watch": "yarn test --watch"
"test:watch": "yarn test --watch",
"prepare": "yarn build"
},
"dependencies": {
"camelcase": "^5.3.1",
Expand Down

0 comments on commit 72015c2

Please sign in to comment.