chore(package): bump deps

This commit is contained in:
Daniel 2018-06-22 18:24:09 +02:00
parent f3ef2a877d
commit ed515f7017
6 changed files with 3516 additions and 855 deletions

4313
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -22,52 +22,52 @@
"shipit": "npm run build && npm run readmes && npm run npmpub"
},
"devDependencies": {
"@angular/common": "6.0.0",
"@angular/compiler": "6.0.0",
"@angular/compiler-cli": "6.0.0",
"@angular/core": "6.0.0",
"@angular/common": "^6.0.6",
"@angular/compiler": "^6.0.6",
"@angular/compiler-cli": "^6.0.6",
"@angular/core": "^6.0.6",
"@types/cordova": "0.0.34",
"@types/fs-extra": "^5.0.2",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.108",
"@types/node": "^9.6.12",
"@types/fs-extra": "^5.0.3",
"@types/jest": "^23.1.1",
"@types/lodash": "^4.14.110",
"@types/node": "^9.6.22",
"@types/rimraf": "^2.0.2",
"@types/webpack": "^4.1.4",
"@types/webpack": "^4.4.2",
"async-promise-queue": "^1.0.4",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.6.1",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"browserify": "^16.2.0",
"browserify": "^16.2.2",
"canonical-path": "0.0.2",
"conventional-changelog-cli": "^1.3.22",
"conventional-changelog-cli": "^2.0.1",
"cpr": "^3.0.1",
"cz-conventional-changelog": "^2.1.0",
"decamelize": "^2.0.0",
"dgeni": "^0.4.9",
"dgeni-packages": "0.16.10",
"fs-extra": "^5.0.0",
"fs-extra": "^6.0.1",
"fs-extra-promise": "^1.0.1",
"gulp": "3.9.1",
"gulp-rename": "1.2.2",
"gulp-replace": "0.6.1",
"gulp-rename": "^1.3.0",
"gulp-replace": "^1.0.0",
"gulp-tslint": "^8.1.3",
"jest": "^22.4.3",
"jest": "^23.1.0",
"lodash": "^4.17.10",
"minimist": "1.2.0",
"nodemon": "^1.17.3",
"nodemon": "^1.17.5",
"rimraf": "^2.6.2",
"rxjs": "^6.1.0",
"rxjs-tslint-rules": "^4.1.1",
"rxjs": "^6.2.1",
"rxjs-tslint-rules": "^4.4.2",
"string-replace-webpack-plugin": "^0.1.3",
"ts-jest": "^22.4.4",
"ts-node": "^6.0.2",
"ts-jest": "^22.4.6",
"ts-node": "^6.1.2",
"tslint": "^5.10.0",
"tslint-ionic-rules": "0.0.14",
"typescript": "~2.7.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"uglifyjs-webpack-plugin": "^1.2.6",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.7.0",
"winston": "^3.0.0-rc5",
"webpack": "^4.12.0",
"winston": "^3.0.0",
"zone.js": "latest"
},
"jest": {

View File

@ -44,7 +44,7 @@ function transformClass(cls: any, ngcBuild?: boolean) {
[...transformMembers(cls), ...pluginStatics]
);
Logger.profile('transformClass: ' + cls.name.text, { level: 'verbose' });
Logger.profile('transformClass: ' + cls.name.text);
return cls;
}

View File

@ -1,8 +1,8 @@
import { createLogger, format, transports } from 'winston';
const { label, printf, prettyPrint, combine, colorize, simple } = format;
const { combine, colorize, simple } = format;
const LOG_LEVEL = 'silly';
const LOG_LEVEL = 'verbose';
export const Logger = createLogger({
level: LOG_LEVEL,

View File

@ -84,7 +84,7 @@ function createIndexFile() {
function compile() {
Logger.profile('build-es5');
webpack(webpackConfig, (err, stats) => {
Logger.profile('build-es5', { level: 'verbose' });
Logger.profile('build-es5');
if (err) Logger.error('Error occurred while compiling with Webpack', err);
else {
Logger.info('Compiled ES5 file with Webpack successfully.');

View File

@ -106,7 +106,7 @@ async function publish(ignoreErrors = false) {
Logger.error('Error publishing!');
Logger.error(e);
}
Logger.profile('Publishing', { level: 'verbose' });
Logger.profile('Publishing');
}
prepare();