From ea7ba5dd5fa34fd06689dfe72577670542d53412 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Fri, 12 Jul 2019 12:42:36 -0300 Subject: 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`. --- development/.jsdoc.json | 25 +++++++++++++++++++++++++ development/tools/.jsdoc.json | 25 ------------------------- development/tools/README.md | 15 --------------- development/tools/appveyor.txt | 21 --------------------- 4 files changed, 25 insertions(+), 61 deletions(-) create mode 100644 development/.jsdoc.json delete mode 100644 development/tools/.jsdoc.json delete mode 100644 development/tools/README.md delete mode 100644 development/tools/appveyor.txt (limited to 'development') diff --git a/development/.jsdoc.json b/development/.jsdoc.json new file mode 100644 index 000000000..fd90bf89f --- /dev/null +++ b/development/.jsdoc.json @@ -0,0 +1,25 @@ +{ + "tags": { + "allowUnknownTags": false + }, + "source": { + "include": "app/scripts/", + "includePattern": ".js$", + "excludePattern": "(node_modules/|docs)" + }, + "plugins": [ + "plugins/markdown" + ], + "opts": { + "template": "node_modules/radgrad-jsdoc-template/", + "encoding": "utf8", + "destination": "docs/jsdocs", + "recurse": true, + "verbose": true + }, + "templates": { + "cleverLinks": false, + "monospaceLinks": false + } +} + diff --git a/development/tools/.jsdoc.json b/development/tools/.jsdoc.json deleted file mode 100644 index fd90bf89f..000000000 --- a/development/tools/.jsdoc.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "tags": { - "allowUnknownTags": false - }, - "source": { - "include": "app/scripts/", - "includePattern": ".js$", - "excludePattern": "(node_modules/|docs)" - }, - "plugins": [ - "plugins/markdown" - ], - "opts": { - "template": "node_modules/radgrad-jsdoc-template/", - "encoding": "utf8", - "destination": "docs/jsdocs", - "recurse": true, - "verbose": true - }, - "templates": { - "cleverLinks": false, - "monospaceLinks": false - } -} - 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 -- cgit v1.2.3