Skip to content

Commit

Permalink
Updates for 3.0 (#32)
Browse files Browse the repository at this point in the history
* Updates for 3.0
  • Loading branch information
bryanforbes authored Jul 23, 2018
1 parent 0386ee0 commit 22ba607
Show file tree
Hide file tree
Showing 40 changed files with 12,946 additions and 16,118 deletions.
7 changes: 3 additions & 4 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Test against the latest version of this Node.js version
environment:
nodejs_version: "8"
FORCE_COLOR: 1

# 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 grunt cli
- npm install

# Post-install test scripts.
Expand All @@ -16,9 +16,8 @@ test_script:
- node --version
- npm --version
# run tests
- node_modules\.bin\grunt.cmd
- npm run test-ci
- node_modules\.bin\grunt.cmd uploadCoverage
- npm test
- npm run uploadCoverage

# Don't actually build.
build: off
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@ env:
global:
- SAUCE_USERNAME: dojo2-ts-ci
- SAUCE_ACCESS_KEY: e92610e3-834e-4bec-a3b5-6f7b9d874601
- FORCE_COLOR: 1
install:
- travis_retry npm install grunt cli
- travis_retry npm install
script:
- grunt
- npm run test-ci
- grunt uploadCoverage
- npm test
- npm run uploadCoverage
notifications:
slack:
secure: O9m3cCkl3H8VXRIuKLFfx91C01n9yLlehem9K3snnBMiyrtGWR2aXo+t1eeZYGfFWIl8UBEaSPlDurI1KspIcW/JbszuYAVje21rbl+ptkp008f5gDVfFCFpqdM9S5+lrVJLlx1mrikWKBRsjYqZHYV9EJx/ss+P86JsQ0utC7zgBFYId+UCMybAemzi1FPfeULFWpoi8QavoN8fNr4yHBayrqOlqnnIhlYLoTiGL6yY8L/meUrmWVxSY3JMDxLeIYNppt4puvTGUD1hU2LZgFZp1y6jGMcAlZI5amGV+iyTl/h2w1wiB6q5tolJ1JslosFvh53y7+1Crbm8wQDkX42+z7Rn3/jXRUBFwLZBGZQ99FcE0Yz+XBaQA3GuCgPNd0rcHmJxeYAKMm7jg2B8Nzd6It3q5mjdp9ITA5kR2G7g+iH8R4y112FXCpvt4/RUvHuyhl7w8lFlHK+LslH3DBjDi3fKUuwiGtU8oD3xpCunJ4JUgQmAWIOy3mpFIOX4QPcBKqByp10fNw3G73JDsJ9DXrFGb/+WnA2OgpDnKOnjoporwufRZLeioRwCJAWM0DbFDvRc1mbnECwcKiedzKdTxSWUGyJ6sxKydZtC11tF356BkzIsf3x7cKSed2LI8VXYNiPOJu9P+/s5/jRf/7kZ+i2ETfuKZC2awhgkBGo=
Expand Down
24 changes: 12 additions & 12 deletions intern.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"suites": [
"./_build/tests/unit/all.js",
"./_build/tests/functional/all.js"
],

"coverage": [
"./_build/src/**/*.js"
],

"configs": {
"local": {}
}
"extends": "./node_modules/@dojo/scripts/intern/base.json",
"capabilities+": {
"name": "@dojo/cli-build-widget"
},
"suites": [
"./dist/dev/tests/unit/all.js",
"./dist/dev/tests/functional/all.js"
],
"coverage": [
"./dist/dev/src/**/*.js",
"!./dist/dev/src/template/**/*"
]
}
Loading

0 comments on commit 22ba607

Please sign in to comment.