Prepare to publish new version

This commit is contained in:
Mathias Biilmann Christensen 2016-11-11 17:28:56 -08:00
parent 0eff4484d0
commit 8623a514af
2 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "netlify-cms",
"version": "0.1.2",
"version": "0.1.3",
"description": "Netlify CMS lets content editors work on structured content stored in git",
"main": "index.js",
"scripts": {
@ -8,6 +8,7 @@
"test": "jest",
"test:watch": "jest --watch",
"build": "NODE_ENV=production webpack --config webpack.prod.js",
"prepublish": "npm run build",
"storybook": "start-storybook -p 9001",
"storybook-build": "build-storybook -o dist",
"lint": "npm run lint:js & npm run lint:css",
@ -31,6 +32,7 @@
"git add"
]
},
"files": ["dist/", "README.md"],
"pre-commit": "lint:staged",
"jest": {
"moduleNameMapper": {
@ -40,7 +42,10 @@
},
"keywords": [
"netlify",
"cms"
"cms",
"content editing",
"static site generators",
"jamstack"
],
"author": "Netlify",
"license": "MIT",

View File

@ -40,4 +40,5 @@ module.exports = merge.smart(require('./webpack.base.js'), {
// Extract CSS
new ExtractTextPlugin('[name].css', { allChunks: true }),
],
devTool: 'source-map',
});