Skip to content
This repository was archived by the owner on Jul 30, 2018. It is now read-only.

Commit a98518c

Browse files
author
Paul Shannon
committedMar 16, 2017
Added grunt doc and keys for automated API builds
1 parent 41795db commit a98518c

File tree

5 files changed

+13
-1
lines changed

5 files changed

+13
-1
lines changed
 

‎.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ LICENSE text
1818
*.jar binary
1919
*.zip binary
2020
*.psd binary
21+
*.enc binary

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ coverage-unmapped.json
1010
coverage-final.json
1111
coverage-final.lcov
1212
npm-debug.log
13+
/_apidoc
14+
deploy_key

‎.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ env:
88
- SAUCE_ACCESS_KEY: e92610e3-834e-4bec-a3b5-6f7b9d874601
99
- BROWSERSTACK_USERNAME: dtktestaccount1
1010
- BROWSERSTACK_ACCESS_KEY: mG2qbEFJCZY2qLsM7yfx
11+
before_install:
12+
- if [ ${TRAVIS_BRANCH-""} == "master" ] && [ -n ${encrypted_12c8071d2874_key-""}
13+
]; then openssl aes-256-cbc -K $encrypted_12c8071d2874_key -iv $encrypted_12c8071d2874_iv
14+
-in deploy_key.enc -out deploy_key -d; fi
1115
install:
1216
- travis_retry npm install grunt-cli
1317
- travis_retry npm install
@@ -17,6 +21,7 @@ script:
1721
- grunt intern:saucelabs --combined
1822
- grunt remapIstanbul:ci
1923
- grunt uploadCoverage
24+
- grunt doc
2025
notifications:
2126
slack:
2227
secure: SBkRu9JVLHLLGrak1VO14yI6sVQ6JZOV8ZMkzNRI+uhcAh9190q2n+1sgaEsknlMNW9ljp/clLpm6Gvw5uTxnqGslHtL4Pld/LKBax/f60C24cbrR+1iKpqoxPfCUAQtcM5UKqnG8MO89fFV4ERoBGEK4ytKQV80/cJbxe0zpOmrUbMhBKOK3T5UpULhyFEx9z1UbavKv/jcoAp70SucBZxcjUMTUJdI6YgUttjCtWdyvQ2tZwhBm9n9oJHjExN/XVXvfqFlEtFt1Uavmzg0JB5jvDZy4fCBKVYLAPbYZX6Nm7rBaPoIpw/VTeW0IZbUYu7K0jF6Rtb+YSA7nwG3YjuZjZ+X/fYT+5ZzHsG0dS50KYEWq+Elxwng9gR6XTw7xHg+wq7rit+H/1MJO3JXlZI8ugaTDDBWtyDQqz+fMNrLdyp21E4UiPCMkIBMgOf+ykHPpcTTsw/AVmB6cbgoAMrhzxetaR9fz3A1K62JG8QI7XvNpfNNb25tpNf7EYXEMqOxGr3M5S+cu+wcrYHL0i82swdmg0P2T/c6QYesg8u4Uwtrtgq2CcaUj5Xwl2vL4N5TsRF1RrCXYefRnF4LyBFjALaCss/EOhAxtVSbBq6HZIgWn0dsWd2adPPT/iWYgyPGctBOVLE4sV8JpeQROlDCdtFizK4iVWdSHFuoFPk=

‎Gruntfile.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
module.exports = function (grunt) {
22
require('grunt-dojo2').initConfig(grunt, {
3-
/* any custom configuration goes here */
3+
typedoc: {
4+
options: {
5+
ignoreCompilerErrors: true // Remove this once compile errors are resolved
6+
}
7+
}
48
});
59
};

‎deploy_key.enc

3.17 KB
Binary file not shown.

0 commit comments

Comments
 (0)
This repository has been archived.