Skip to content
This repository was archived by the owner on Feb 18, 2021. It is now read-only.

Commit 1935315

Browse files
committed
Fix the build script and bump to v0.3.1
1 parent 141dc38 commit 1935315

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## [0.3.1](https://github.com/tinyclues/saltpad/tree/0.3.1) (2016-04-19)
4+
5+
- Fix the dist.zip archive to correctly create the "static" directory. Sorry for the inconvenience.
6+
- The "settings.json" file should be located in the "static" directory and not in a "config" directory, documentation has been fixed.
7+
38
## [0.3](https://github.com/tinyclues/saltpad/tree/0.3) (2016-03-03)
49

510
- Make the external_auth configurable in the settings. It is optional and the default value is 'pam'.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"scripts": {
6363
"clean": "rimraf dist && rimraf dist.zip",
6464
"build:webpack": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js --config webpack.config.prod.js",
65-
"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",
65+
"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",
6666
"start": "node devServer.js",
6767
"playground": "node devServer.js --env playground",
6868
"lint": "eslint src"

0 commit comments

Comments
 (0)