Skip to content

Commit

Permalink
13
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanahata committed Jul 28, 2023
1 parent dd0e0ca commit 06f11bc
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 54 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.angular/cache
# Logs
logs
*.log
Expand Down
29 changes: 0 additions & 29 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,6 @@
"src/favicon.ico"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": []
}
}
}
},
Expand All @@ -112,15 +102,6 @@
"protractorConfig": "./protractor.conf.js",
"devServerTarget": "dev:serve"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"e2e/tsconfig.e2e.json"
],
"exclude": []
}
}
}
},
Expand Down Expand Up @@ -206,16 +187,6 @@
"src/favicon.ico"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": []
}
}
}
}
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,26 @@
"sass:rebuild": "npm rebuild node-sass"
},
"dependencies": {
"@angular/common": "12.2.17",
"@angular/compiler": "12.2.17",
"@angular/core": "12.2.17",
"@angular/forms": "12.2.17",
"@angular/common": "13.4.0",
"@angular/compiler": "13.4.0",
"@angular/core": "13.4.0",
"@angular/forms": "13.4.0",
"@angular/http": "*",
"@angular/platform-browser": "12.2.17",
"@angular/platform-browser-dynamic": "12.2.17",
"@angular/router": "12.2.17",
"@angular/platform-browser": "13.4.0",
"@angular/platform-browser-dynamic": "13.4.0",
"@angular/router": "13.4.0",
"core-js": "^3.6.4",
"rxjs": "*",
"webpack": "*",
"zone.js": "~0.11.4",
"jsgantt-improved": "*"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.18",
"@angular-devkit/schematics": "^12.2.18",
"@angular/cli": "12.2.18",
"@angular/compiler-cli": "12.2.17",
"@angular/language-service": "12.2.17",
"@angular-devkit/build-angular": "~13.3.11",
"@angular-devkit/schematics": "^13.3.11",
"@angular/cli": "13.3.11",
"@angular/compiler-cli": "13.4.0",
"@angular/language-service": "13.4.0",
"@types/jasmine": "~3.6.0",
"@types/node": "^13.7.1",
"codelyzer": "^6.0.0",
Expand All @@ -54,14 +54,14 @@
"karma-coverage-istanbul-reporter": "^2.0.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^12.2.7",
"ng-packagr": "^13.3.1",
"protractor": "~7.0.0",
"rimraf": "^2.7.1",
"ts-node": "~7.0.0",
"tsickle": "^0.29.0",
"tslib": "^2.0.0",
"tslint": "~6.1.3",
"typescript": "4.3.5",
"typescript": "4.6.4",
"awesome-typescript-loader": "^2.2.1",
"rollup": "0.67.4"
}
Expand Down
10 changes: 0 additions & 10 deletions src/polyfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,12 @@
// import 'core-js/es6/map';
// import 'core-js/es6/set';

/** IE10 and IE11 requires the following for NgClass support on SVG elements */
// import 'classlist.js'; // Run `npm install --save classlist.js`.

/** IE10 and IE11 requires the following to support `@angular/animation`. */
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.


/** Evergreen browsers require these. **/
import 'core-js/es6/reflect';
import 'core-js/es7/reflect';


/** ALL Firefox browsers require the following to support `@angular/animation`. **/
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.



/***************************************************************************************************
* Zone JS is required by Angular itself.
Expand Down
4 changes: 3 additions & 1 deletion src/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ __karma__.loaded = function () {};
// First, initialize the Angular testing environment.
getTestBed().initTestEnvironment(
BrowserDynamicTestingModule,
platformBrowserDynamicTesting()
platformBrowserDynamicTesting(), {
teardown: { destroyAfterEach: false }
}
);
// Then we find all the tests.
const context = require.context('./', true, /\.spec\.ts$/);
Expand Down

0 comments on commit 06f11bc

Please sign in to comment.