Skip to content

Commit

Permalink
Updates for 3.0.0 (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanforbes authored Jul 23, 2018
1 parent d2125f2 commit d2f3270
Show file tree
Hide file tree
Showing 19 changed files with 3,098 additions and 8,139 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: "6"
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
- node_modules\.bin\grunt.cmd intern:node --test-reporter --color
- node_modules\.bin\grunt.cmd uploadCoverage
- npm test
- npm run uploadCoverage

# Don't actually build.
build: off
7 changes: 1 addition & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,11 @@
*.js.map
!/*.js
!/tasks/*.js
/_build
/bower_components
/coverage
/dist
/html-report
/node_modules
/typings
.baseDir.ts
.tscache
.tsconfig*.json
.history
coverage-final.lcov
npm-debug.log
yarn.lock
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@ env:
- BROWSERSTACK_ACCESS_KEY: 4Q2g8YAc9qeZzB2hECnS
- 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
- grunt intern:node --test-reporter
- grunt uploadCoverage
- npm test
- npm run uploadCoverage
25 changes: 2 additions & 23 deletions intern.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,6 @@
{
"capabilities": {
"browserstack.debug": false,
"project": "Dojo 2",
"extends": "./node_modules/@dojo/scripts/intern/base.json",
"capabilities+": {
"name": "@dojo/cli-create-app"
},

"environments": [
{ "browserName": "node" }
],

"suites": [
"./_build/tests/unit/all.js"
],

"functionalSuites": [
"./_build/tests/functional/all.js"
],

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

"configs": {
"local": {}
}
}
Loading

0 comments on commit d2f3270

Please sign in to comment.