Skip to content

Commit

Permalink
Merge pull request #21 from emyann/fix/semantic-release-update
Browse files Browse the repository at this point in the history
fix: Update semantic-release npm script
  • Loading branch information
emyann committed Apr 28, 2018
2 parents 6e0ea9e + d1575f9 commit 4ff1c38
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,25 @@
"start": "npm run server:dev",
"server": "npm run server:dev",
"server:dev": "webpack-dashboard -- webpack-dev-server --config ./webpack.config.js --hot --inline --progress --watch --open",
"server:prod": "cross-env NODE_ENV=production webpack-dashboard -- webpack-dev-server --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --inline --progress --profile --watch --open --content-base dist/",
"server:prod":
"cross-env NODE_ENV=production webpack-dashboard -- webpack-dev-server --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --inline --progress --profile --watch --open --content-base dist/",
"build": "npm run build:dev",
"build:dev": "webpack --config ./webpack.config.js --progress --profile --color --display-error-details --display-cached",
"build:prod": "cross-env NODE_ENV=production webpack --config ./webpack.config.js --progress --profile --color --display-error-details --display-cached --bail",
"build:prod":
"cross-env NODE_ENV=production webpack --config ./webpack.config.js --progress --profile --color --display-error-details --display-cached --bail",
"clean": "npm cache clear && rimraf -- dist",
"test": "karma start",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
"semantic-release": "semantic-release --prepare && semantic-release --publish"
},
"author": {
"name": "Yann Renaudin",
"email": "renaudin.yann@gmail.com",
"url": "https://twitter.com/renaudin_yann"
},
"files": [
"dist"
],
"files": ["dist"],
"main": "./dist/morphism.js",
"types": "./dist/morphism.d.ts",
"keywords": [
"Javascript",
"Json",
"Object",
"Mapper",
"Data Mapping",
"Functional Programming"
],
"keywords": ["Javascript", "Json", "Object", "Mapper", "Data Mapping", "Functional Programming"],
"devDependencies": {
"@types/jasmine": "^2.5.53",
"@types/lodash": "^4.14.70",
Expand Down

0 comments on commit 4ff1c38

Please sign in to comment.