Skip to content

Commit a09cb83

Browse files
author
Paul Shannon
committed
Added grunt doc and keys for automated API builds
1 parent f45c826 commit a09cb83

File tree

5 files changed

+13
-0
lines changed

5 files changed

+13
-0
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
@@ -5,6 +5,7 @@
55
/_build
66
/bower_components
77
/dist
8+
deploy_key
89
/html-report
910
/node_modules
1011
/typings
@@ -14,3 +15,4 @@
1415
.history
1516
coverage-unmapped.json
1617
npm-debug.log
18+
/_apidoc

.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ env:
88
- BROWSERSTACK_ACCESS_KEY: mG2qbEFJCZY2qLsM7yfx
99
- SAUCE_USERNAME: dojo2-ts-ci
1010
- SAUCE_ACCESS_KEY: e92610e3-834e-4bec-a3b5-6f7b9d874601
11+
before_install:
12+
- if [ ${TRAVIS_BRANCH-""} == "master" ] && [ -n ${encrypted_12c8071d2874_key-""} ]; then openssl aes-256-cbc -K
13+
$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
@@ -16,6 +20,7 @@ script:
1620
- grunt intern:node --combined
1721
- grunt remapIstanbul:ci
1822
- grunt uploadCoverage
23+
- grunt doc
1924
notifications:
2025
slack:
2126
secure: csk4Z27tvAFFsiGHL8OCTyXA+lqqDBXXDnf0v1QHaeeOokxvh+ke9C6k1AYo+mjo6YRfTJjlPyQvz2baG0cIFfKwDkDTmdk6XRhIGlrWEs/ZUmmaYa/pBcz3jGZ1xytTe/Mg07Ll4VLMtz6uSNk2ApwxuB6p5A1dN7GvwZIw9IxFHJ49QvYar61NkYwGvvzOkAoWAyw1MR3rZpGMNbHR+S8BQ5hNwVd8UwzEEg5ZHvx6p7A9EYleRCbER93VWK1fOamPvM7XFtB6znPewDeViUO+xug9z7RwnzppTjlkan/IyjoduuupS9L7VrchyevcS4UOUODJsOW36gUv/ZczjbJVlGzAvMkBRRn/8++lPPqxz60m/7QCkK0yDPSoxhsiNMmPzCt9D61kr2KvM5p/OzyxAjAyridQ7td5BZfbAvWq6Ow5o81hp+r0ywXSOV858pKJF/RjI3zVt8yyT2f35tlKpNG3z0mTwOSUfarsQYmMFHbJgvHQbfPOQs3WlyXLhfwNyjMsCSjyA/N+Ubg0EVEddhBD5NWt+h+YUgvCTaDVFGOSQ90MCdVmcTe8e7Oz673c5SQI1qMB7fKKb080lit4HfJR3+6mpgQ9LgoaJU2+4zLojkbaWMBl71o1n9Qt1Y0yIutypuzhbuXkCPh9g3x3l7KP5+mnqUg2Y+ejavQ=

Gruntfile.js

+5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ module.exports = function (grunt) {
2323
src: staticFiles,
2424
dest: '<%= distDirectory %>'
2525
}
26+
},
27+
typedoc: {
28+
options: {
29+
ignoreCompilerErrors: true // Remove this once compile errors are resolved
30+
}
2631
}
2732
});
2833

deploy_key.enc

3.17 KB
Binary file not shown.

0 commit comments

Comments
 (0)