From 8623a514af950f8005790379fb1a7c8fefb21e20 Mon Sep 17 00:00:00 2001 From: Mathias Biilmann Christensen Date: Fri, 11 Nov 2016 17:28:56 -0800 Subject: [PATCH] Prepare to publish new version --- package.json | 9 +++++++-- webpack.prod.js | 1 + 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9abcbbf1..592840a3 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/webpack.prod.js b/webpack.prod.js index fbbd017b..ff7f209e 100644 --- a/webpack.prod.js +++ b/webpack.prod.js @@ -40,4 +40,5 @@ module.exports = merge.smart(require('./webpack.base.js'), { // Extract CSS new ExtractTextPlugin('[name].css', { allChunks: true }), ], + devTool: 'source-map', });