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

View File

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