Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates for 3.0 #32

Merged
merged 5 commits into from
Jul 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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