diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d84926..adc50f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 8.0.1 (2020-09-01) + +* feat: setting up webpack (#4) ([fa651fc](https://github.com/readmeio/syntax-highlighter/commit/fa651fc)), closes [#4](https://github.com/readmeio/syntax-highlighter/issues/4) + + + ## 8.0.0 (2020-08-31) > No breaking changes in this release, the package has just moved a new home at https://github.com/readmeio/syntax-highlighter! diff --git a/package.json b/package.json index d4fe4ad..7dc9cfb 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "@readme/syntax-highlighter", "description": "ReadMe's React-based syntax highlighter", - "version": "8.0.0", - "main": "src/index.js", + "version": "8.0.1", + "main": "dist/index.js", "dependencies": { "@readme/variable": "^7.1.0", "codemirror": "^5.48.2", @@ -10,14 +10,14 @@ "react-dom": "^16.13.1" }, "scripts": { + "build": "webpack --config ./webpack.config.js", "inspect": "jsinspect", "lint": "eslint . --ext .jsx --ext .js", "pretest": "npm run lint && npm run prettier && npm run inspect", "prettier": "prettier --list-different --write \"./**/**.{js,jsx}\"", + "start": "webpack-dev-server --open --config ./webpack.config.dev.js", "test": "jest --coverage --runInBand", "version": "conventional-changelog -i CHANGELOG.md -s && git add CHANGELOG.md", - "build": "webpack --config ./webpack.config.js", - "start": "webpack-dev-server --open --config ./webpack.config.dev.js", "watch": "webpack -w --progress" }, "license": "ISC",