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

Commit

Permalink
Fix the build script and bump to v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Lothiraldan committed Apr 20, 2016
1 parent 141dc38 commit 1935315
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -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'.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 1935315

Please sign in to comment.