Skip to content

Commit cfe8f3c

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

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
@@ -11,3 +11,5 @@ coverage-final.json
1111
coverage-final.lcov
1212
npm-debug.log
1313
yarn.lock
14+
/_apidoc
15+
deploy_key

.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ env:
1111
cache:
1212
directories:
1313
- node_modules
14+
before_install:
15+
- if [ ${TRAVIS_BRANCH-""} == "master" ] && [ -n ${encrypted_12c8071d2874_key-""}
16+
]; then openssl aes-256-cbc -K $encrypted_12c8071d2874_key -iv $encrypted_12c8071d2874_iv
17+
-in deploy_key.enc -out deploy_key -d; fi
1418
install:
1519
- travis_retry npm install grunt-cli
1620
- travis_retry npm install
@@ -20,6 +24,7 @@ script:
2024
- grunt intern:saucelabs --combined
2125
- grunt remapIstanbul:ci
2226
- grunt uploadCoverage
27+
- grunt doc
2328
notifications:
2429
slack:
2530
secure: PqGYaEK7YF0ZbGJzKCYiyE5bK1qDz8SDMUeo5xisAkDIhUADdbgCnV+nF5DeHnY2cekkhwtmAqwvsgVvHvi44o89I1di5hTJCpwtlizfC/gWXZ3/CbkLebeTOVwbElKqRdx8E2iF/SnGH7ObSISDebGmFp/dYXVb6Jlbnx/qzTeesH2PqF2hmFNmBkaLjkkENqSFaPqpS9PJQdFrlxMSgC8Ff8Jy6h2G8IxUS7yofryZauoJY0JyYVhMm/IqY+O6QnzMNz/n1pYLnJPvmKBSd5jv/SC6LDxTpt37CwHiPF7HBEG/bUO6T+S+gUig+3WP+PCnE5u8iAQfKAFM4lx8XdlWYihI0F4RlBatY8d/05lqUU6yMfen6GUz8xOq00Hzcdh1hO7eApRWqWbdD1jFIUdR8Gy5h5AqkWsz2IvtpA9UJQfscYnfKBEN6goAbKyKG6wjcoyuq3EycR0PmH8BJQCL/EEg6f1QWoele9PToSbwfbI9QWYb0T1qyj8/FuGM+KZVXoJUDfIbu5H+UBYWuT/vSisKSFEVDX+syciHcvmfYN0l5U6miok6MwWgwaIPHEg/BO32iMa99Kqu1BE2TIBub88NS19iwwZq9Ersv6Z/DjJjzgfTKjzFUz7byRy6e8/ZKW2KEE8KBR3HmvgCAXeo+e8tEIP67socX0eU5pM=

Gruntfile.js

+5
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ module.exports = function (grunt) {
4747
config: '<%= devDirectory %>/common/tests/intern-local',
4848
}
4949
}
50+
},
51+
typedoc: {
52+
options: {
53+
ignoreCompilerErrors: true // Remove this once compile errors are resolved
54+
}
5055
}
5156
});
5257

deploy_key.enc

3.17 KB
Binary file not shown.

0 commit comments

Comments
 (0)