From 1935315fd5902f64d941f12e852453c405d2fc6b Mon Sep 17 00:00:00 2001 From: Boris FELD Date: Tue, 19 Apr 2016 18:33:08 -0600 Subject: [PATCH] Fix the build script and bump to v0.3.1 --- Changelog.md | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 07b8219..65fce36 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,10 @@ # Change Log +## [0.3.1](https://github.com/tinyclues/saltpad/tree/0.3.1) (2016-04-19) + +- Fix the dist.zip archive to correctly create the "static" directory. Sorry for the inconvenience. +- The "settings.json" file should be located in the "static" directory and not in a "config" directory, documentation has been fixed. + ## [0.3](https://github.com/tinyclues/saltpad/tree/0.3) (2016-03-03) - Make the external_auth configurable in the settings. It is optional and the default value is 'pam'. diff --git a/package.json b/package.json index 7c70cfc..fad4a7b 100644 --- a/package.json +++ b/package.json @@ -62,7 +62,7 @@ "scripts": { "clean": "rimraf dist && rimraf dist.zip", "build:webpack": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js --config webpack.config.prod.js", - "build": "npm run clean && npm run build:webpack && zip -j -r dist.zip dist/* && md5sum dist.zip > dist.zip.md5 && sha1sum dist.zip > dist.zip.sha1", + "build": "npm run clean && npm run build:webpack && zip -r dist.zip dist/* && md5sum dist.zip > dist.zip.md5 && sha1sum dist.zip > dist.zip.sha1", "start": "node devServer.js", "playground": "node devServer.js --env playground", "lint": "eslint src"