Skip to content

Commit

Permalink
added build folders to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelbieh committed May 23, 2019
1 parent 91fe5a7 commit b9622e0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
yarn-error.log
/es
/lib
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
lib/*
es/*
1 change: 0 additions & 1 deletion lib/index.js

This file was deleted.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@
"homepage": "https://github.com/manuelbieh/geolib#readme",
"scripts": {
"babel": "babel",
"build": "rimraf es && build:es && build:types && build:umd",
"build": "rimraf es && yarn build:es && yarn build:types && yarn build:umd",
"build:es": "babel --minified --ignore **/*.test.js,**/*.test.ts --out-dir es --extensions .ts,.js --no-comments src",
"build:types": "tsc --outDir es --emitDeclarationOnly --noEmit false --declaration",
"build:umd": "webpack-cli --config webpack.config.js",
"clean": "rimraf lib es",
"lint": "eslint src/**/*.{js,ts}",
"release": "semantic-release",
"postrelease": "git push origin master --follow-tags",
Expand Down

0 comments on commit b9622e0

Please sign in to comment.