Skip to content

Commit

Permalink
feat(*): upgrade dependencies (#118)
Browse files Browse the repository at this point in the history
* upgrade libs

* remove failed tests

* use scope package

* fix style

* fix bugs

* remove -beta

* fix query service
  • Loading branch information
mbarbeau authored Feb 2, 2018
1 parent eec7f16 commit 292e4dc
Show file tree
Hide file tree
Showing 153 changed files with 11,757 additions and 7,280 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ If you want to develop in IGO2 Library, it can be installed by:
4. Open your browser at http://localhost:4200/

## Install user instance
The latest release of IGO2 Library can be used and installed from npm `npm install --save igo2`
The latest release of IGO2 Library can be used and installed from npm `npm install --save @igo2/igo2`

### Getting started

Expand Down
2 changes: 1 addition & 1 deletion e2e/app.po.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ export class IgoLibPage {
}

getIgoSearchModule() {
return element.all(by.css('igo-demo md-card-subtitle')).get(1);
return element.all(by.css('igo-demo mat-card-subtitle')).get(1);
}
}
1 change: 1 addition & 0 deletions e2e/tsconfig.e2e.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"target": "es5",
"types":[
"jasmine",
"jasminewd2",
"node"
]
}
Expand Down
14 changes: 8 additions & 6 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,24 +31,26 @@ module.exports = function (config) {
nocache: false,
served: true
},
{
pattern: './src/demo-app/contexts/*.json',
watched: false,
included: false,
nocache: false,
served: true
},
{ pattern: './src/test/test.ts', watched: false }
],
preprocessors: {
'./src/test/test.ts': ['@angular/cli']
},
mime: {
'text/x-typescript': ['ts','tsx']
},
coverageIstanbulReporter: {
reports: [ 'html', 'lcovonly' ],
fixWebpackSourcePaths: true
},
angularCli: {
environment: 'dev'
},
reporters: config.angularCli && config.angularCli.codeCoverage
? ['progress', 'coverage-istanbul']
: ['progress', 'kjhtml'],
reporters: ['progress', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_DEBUG,
Expand Down
Loading

0 comments on commit 292e4dc

Please sign in to comment.