Skip to content
This repository has been archived by the owner on Jul 6, 2024. It is now read-only.

Commit

Permalink
Bump to v0.4.0, update deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitaindik committed Nov 30, 2020
1 parent 1d70d7e commit 919638b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions create-release-zip.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

PACKAGE_VERSION=$(grep version package.json | cut -d':' -f2 | cut -d'"' -f2)

zip -r funda-neighbourhoods-v$PACKAGE_VERSION.zip build
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "funda-chrome-extension",
"version": "0.3.0",
"version": "0.4.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack --config webpack.config.js --env.BUILD_MODE=dev",
"build": "webpack --config webpack.config.js --env.BUILD_MODE=production",
"test": "webpack --config webpack.config.js --env.BUILD_MODE=test && jest --config=tests/jest.config.js",
"test:ci": "npm ci && npm run test",
"zip": "zip -r funda-neighbourhoods-build.zip build"
"release": "npm run build && ./create-release-zip.sh"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
Expand Down

0 comments on commit 919638b

Please sign in to comment.