diff options
author | Mark Stacey <markjstacey@gmail.com> | 2019-07-12 23:42:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-12 23:42:36 +0800 |
commit | ea7ba5dd5fa34fd06689dfe72577670542d53412 (patch) | |
tree | bb6dc223f6f28b493e08b9091f6306117537a29e /development | |
parent | 2eea38868081d5e1d87b70712253cceb750f2011 (diff) | |
download | tangerine-wallet-browser-ea7ba5dd5fa34fd06689dfe72577670542d53412.tar tangerine-wallet-browser-ea7ba5dd5fa34fd06689dfe72577670542d53412.tar.gz tangerine-wallet-browser-ea7ba5dd5fa34fd06689dfe72577670542d53412.tar.bz2 tangerine-wallet-browser-ea7ba5dd5fa34fd06689dfe72577670542d53412.tar.lz tangerine-wallet-browser-ea7ba5dd5fa34fd06689dfe72577670542d53412.tar.xz tangerine-wallet-browser-ea7ba5dd5fa34fd06689dfe72577670542d53412.tar.zst tangerine-wallet-browser-ea7ba5dd5fa34fd06689dfe72577670542d53412.zip |
Remove unused AppVeyor configuration (#6840)
The AppVeyor configuration appears to be unused - this project is not
connected to AppVeyor.
After deleting the AppVeyor config, the JSDoc config was the last thing
in the `development/tools` directory. That felt a little silly, so I
moved it up to `development`.
Diffstat (limited to 'development')
-rw-r--r-- | development/.jsdoc.json (renamed from development/tools/.jsdoc.json) | 0 | ||||
-rw-r--r-- | development/tools/README.md | 15 | ||||
-rw-r--r-- | development/tools/appveyor.txt | 21 |
3 files changed, 0 insertions, 36 deletions
diff --git a/development/tools/.jsdoc.json b/development/.jsdoc.json index fd90bf89f..fd90bf89f 100644 --- a/development/tools/.jsdoc.json +++ b/development/.jsdoc.json diff --git a/development/tools/README.md b/development/tools/README.md deleted file mode 100644 index caef51fe6..000000000 --- a/development/tools/README.md +++ /dev/null @@ -1,15 +0,0 @@ -# Development Tools & Configurations - -This folder contains configuration files which are used by the the different -development-tools, like e.g. JsDoc. - - -## Appveyor - - -https://www.appveyor.com/docs/build-configuration/#alternative-yaml-file-location - -Withtin the configuration, point to a weblocation of a txt config file: - -https://ci.appveyor.com/project/lazaridiscom/mm-vault/settings -https://raw.githubusercontent.com/lazaridiscom/mm-vault/master/dev/tools/appveyor.txt diff --git a/development/tools/appveyor.txt b/development/tools/appveyor.txt deleted file mode 100644 index 4ed974079..000000000 --- a/development/tools/appveyor.txt +++ /dev/null @@ -1,21 +0,0 @@ -# Test against the latest version of this Node.js version -environment: - nodejs_version: "8" - -# Install scripts. (runs after repo cloning) -install: - # Get the latest stable version of Node.js or io.js - - ps: Install-Product node $env:nodejs_version - # install modules - - npm install - -# Post-install test scripts. -test_script: - # Output useful info for debugging. - - node --version - - npm --version - # run tests - - npm test - -# Don't actually build. -build: off |