From ed0dc385afb5ec594e7ce7433f64aa3c7aa4344d Mon Sep 17 00:00:00 2001 From: NGPixel Date: Sun, 23 Jul 2017 16:42:45 -0400 Subject: [PATCH] docs: updated version --- CHANGELOG.md | 4 ++++ README.md | 2 +- wercker.yml | 28 ++++++++++++++++++++++++++++ 3 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 wercker.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index f7581ebb..52054f51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). - **History**: History section to list all changes - **Security**: Optional Two-Factor Authentication (2FA) protection +## [v1.0.3] - 2017-07-23 +### Fixed +- **Misc**: Revert to npm install (Yarn may cause permissions + hang issues) + ## [v1.0.1] - 2017-07-22 ### Changed - **Misc**: Switch to Yarn for npm dependencies installation diff --git a/README.md b/README.md index 6bcdc1e6..9e79d28c 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Current and upcoming milestones *(major features only, see the [changelog](https - [x] Render line breaks by default (GitHub style) - [x] New Localization: German -### 1.0.1 - Stable +### 1.0.3 - Stable ![Progress](http://progressed.io/bar/100) - [x] Bug fixes release diff --git a/wercker.yml b/wercker.yml new file mode 100644 index 00000000..f4b25f4c --- /dev/null +++ b/wercker.yml @@ -0,0 +1,28 @@ +box: node:8-alpine +build: + steps: + - script: + name: yarn repository + code: | + curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - + echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list + apt update + - install-packages: + packages: bash build-essential git openssh yarn + - script: + name: yarn install + code: | + yarn config set cache-folder "$WERCKER_CACHE_DIR/yarn" + yarn install + - script: + name: build + code: yarn run build + - npm-test +deploy: + steps: + - script: + name: package + code: | + tar -czf wiki-js.tar.gz * -X .build/.deployexclude + yarn install --production --ignore-scripts --prefer-offline + tar -czf node_modules.tar.gz node_modules