Skip to content

Commit

Permalink
perf(): Migrated to Angular 2.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
akserg committed Jan 21, 2017
1 parent e87c48b commit 511cb24
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3,689 deletions.
4 changes: 2 additions & 2 deletions config/webpack.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module.exports = {
rules: [{
enforce: 'pre',
test: /\.ts$/,
loader: 'tslint',
loader: 'tslint-loader',
exclude: [helpers.root('node_modules')]
}, {
enforce: 'pre',
Expand Down Expand Up @@ -77,7 +77,7 @@ module.exports = {
*
* See: https://github.com/wbuchwalter/tslint-loader
*/
tslint: {
tslintLoader: {
emitErrors: false,
failOnHint: false,
resourcePath: 'src'
Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@
"typings": "index.d.ts",
"homepage": "https://github.com/akserg/ng2-toasty",
"peerDependencies": {
"@angular/core": "^2.4.2"
"@angular/core": "^2.4.4"
},
"devDependencies": {
"@angular/common": "^2.4.2",
"@angular/compiler": "^2.4.2",
"@angular/compiler-cli": "^2.4.2",
"@angular/core": "^2.4.2",
"@angular/platform-browser": "^2.4.2",
"@angular/platform-browser-dynamic": "^2.4.2",
"@angular/platform-server": "^2.4.2",
"@angular/common": "^2.4.4",
"@angular/compiler": "^2.4.4",
"@angular/compiler-cli": "^2.4.4",
"@angular/core": "^2.4.4",
"@angular/platform-browser": "^2.4.4",
"@angular/platform-browser-dynamic": "^2.4.4",
"@angular/platform-server": "^2.4.4",
"@types/hammerjs": "2.0.33",
"@types/jasmine": "2.5.37",
"@types/node": "6.0.46",
"awesome-typescript-loader": "2.2.4",
"codelyzer": "1.0.0-beta.3",
"codelyzer": "2.0.0-beta.2",
"commitizen": "2.8.6",
"core-js": "2.4.1",
"cz-conventional-changelog": "1.2.0",
Expand All @@ -58,18 +58,18 @@
"karma-mocha-reporter": "^2.1.0",
"karma-remap-coverage": "~0.1.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"karma-webpack": "^2.0.1",
"loader-utils": "~0.2.16",
"reflect-metadata": "0.1.8",
"rxjs": "^5.0.1",
"rxjs": "^5.0.3",
"semantic-release": "4.3.5",
"source-map-loader": "0.1.5",
"ts-helpers": "1.1.2",
"tslint": "3.15.1",
"tslint-loader": "2.1.5",
"tslint": "~4.0.0",
"tslint-loader": "3.3.0",
"typescript": "2.0.10",
"webpack": "2.1.0-beta.25",
"zone.js": "^0.7.2"
"webpack": "2.2.0",
"zone.js": "^0.7.6"
},
"config": {
"commitizen": {
Expand Down
11 changes: 0 additions & 11 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"spaces"
],
"label-position": true,
"label-undefined": true,
"member-access": false,
"no-arg": true,
"no-bitwise": true,
Expand All @@ -25,7 +24,6 @@
],
"no-construct": true,
"no-debugger": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": false,
"no-eval": true,
Expand All @@ -34,7 +32,6 @@
"no-string-literal": false,
"no-unused-expression": true,
"no-unused-variable": true,
"no-unreachable": true,
"no-use-before-declare": true,
"object-literal-sort-keys": false,
"one-line": [
Expand Down Expand Up @@ -63,14 +60,6 @@
}
],
"variable-name": false,
"directive-selector-type": [
true,
"attribute"
],
"component-selector-type": [
true,
"element"
],
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"use-host-property-decorator": false,
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = {
rules: [{
enforce: 'pre',
test: /\.ts$/,
loader: 'tslint',
loader: 'tslint-loader',
exclude: [helpers.root('node_modules')]
}, {
test: /\.ts$/,
Expand Down
Loading

0 comments on commit 511cb24

Please sign in to comment.