Skip to content

Commit

Permalink
chore: release v3.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisermann committed Nov 5, 2019
1 parent b4461b4 commit 2f37d3e
Show file tree
Hide file tree
Showing 3 changed files with 211 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [3.2.4](https://github.com/kaisermann/svelte-preprocess/compare/v3.2.3...v3.2.4) (2019-11-05)


### Bug Fixes

* 🐛 rollback last release ([b4461b4](https://github.com/kaisermann/svelte-preprocess/commit/b4461b4431ce8d87ecd386f2fe40bb34775c3d8f))



## [3.2.3](https://github.com/kaisermann/svelte-preprocess/compare/v3.2.2...v3.2.3) (2019-11-05)


Expand Down
195 changes: 194 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svelte-preprocess",
"version": "3.2.3",
"version": "3.2.4",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -21,8 +21,7 @@
"node": ">= 7.6.0"
},
"files": [
"dist/",
"svelte.d.ts"
"dist/"
],
"scripts": {
"prebuild": "rm -rf dist/ && npm run lint",
Expand All @@ -33,9 +32,9 @@
"lint": "eslint **/*.ts",
"format": "prettier --loglevel silent --write \"src/**/*.ts\" && eslint --fix \"src/**/*.ts\"",
"postinstall": "node -e \"console.log('\\u001b[36m\\u001b[1m[svelte-preprocess] Don\\'t forget to install the preprocessors packages that will be used: \\u001b[22m\\u001b[39m\\u001b[34mnode-sass/sass, stylus, less, postcss & postcss-load-config, coffeescript, pug, etc...\\u001b[0m')\"",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1 && git add CHANGELOG.md",
"tag": "git tag -a v$npm_package_version -m 'Release v$npm_package_version'",
"release": "npm run version && npm i --package-lock-only && git add package.json package-lock.json && git commit -m \"chore: release v$npm_package_version\"",
"release": "npm run version && npm i --package-lock-only && git add package.json package-lock.json && git commit -m \"chore(release): v$npm_package_version :tada:\"",
"minify": "babel-minify dist -d dist",
"prepublishOnly": "npm run build && npm run minify && npm run release && npm run tag"
},
Expand All @@ -48,6 +47,9 @@
"^.+\\.tsx?$": "ts-jest"
}
},
"auto-changelog": {
"ignoreCommitPattern": "chore: release|chore\\(release\\)|Release v\\d"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/node": "^12.7.8",
Expand All @@ -60,9 +62,7 @@
"coffeescript": "^2.3.2",
"conventional-changelog-cli": "^2.0.25",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-config-kaisermann": "^0.0.1",
"jest": "^24.9.0",
"less": "^3.9.0",
"node-sass": "^4.12.0",
Expand Down

0 comments on commit 2f37d3e

Please sign in to comment.