-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from emyann/fix/semantic-release-update
fix: Update semantic-release npm script
- Loading branch information
Showing
1 changed file
with
7 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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": "[email protected]", | ||
"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", | ||
|