Commit 7a0e491d authored by RAHUL RATHORE's avatar RAHUL RATHORE
Browse files

fix: shop web angular auto migrate

parent e0091229
Loading
Loading
Loading
Loading
+0 −16
Original line number Diff line number Diff line
@@ -49,7 +49,6 @@
							"optimization": true,
							"outputHashing": "all",
							"sourceMap": false,
							"extractCss": true,
							"namedChunks": false,
							"aot": true,
							"extractLicenses": true,
@@ -105,14 +104,6 @@
							}
						]
					}
				},
				"lint": {
					"builder": "@angular-devkit/build-angular:tslint",
					"options": {
						"tsConfig": ["tsconfig.json", "tsconfig.spec.json"],
						"typeCheck": true,
						"exclude": ["**/node_modules/**/*"]
					}
				}
			}
		},
@@ -127,13 +118,6 @@
						"protractorConfig": "./protractor.conf.js",
						"devServerTarget": "ever-shop-web:serve"
					}
				},
				"lint": {
					"builder": "@angular-devkit/build-angular:tslint",
					"options": {
						"tsConfig": ["tsconfig.e2e.json"],
						"exclude": ["**/node_modules/**/*"]
					}
				}
			}
		}
+19 −21
Original line number Diff line number Diff line
@@ -94,19 +94,19 @@
	},
	"dependencies": {
		"@agm/core": "^1.1.0",
		"@angular/animations": "~13.0.0",
		"@angular/cdk": "^13.0.3",
		"@angular/common": "~13.0.0",
		"@angular/compiler": "~13.0.0",
		"@angular/core": "~13.0.0",
		"@angular/forms": "~13.0.0",
		"@angular/language-service": "^13.0.3",
		"@angular/material": "^13.0.3",
		"@angular/platform-browser": "~13.0.0",
		"@angular/platform-browser-dynamic": "~13.0.0",
		"@angular/platform-server": "^13.0.3",
		"@angular/router": "~13.0.0",
		"@angular/service-worker": "^13.0.3",
		"@angular/animations": "^13.1.0",
		"@angular/cdk": "^13.1.0",
		"@angular/common": "^13.1.0",
		"@angular/compiler": "^13.1.0",
		"@angular/core": "^13.1.0",
		"@angular/forms": "^13.1.0",
		"@angular/language-service": "^13.1.0",
		"@angular/material": "^13.1.0",
		"@angular/platform-browser": "^13.1.0",
		"@angular/platform-browser-dynamic": "^13.1.0",
		"@angular/platform-server": "^13.1.0",
		"@angular/router": "^13.1.0",
		"@angular/service-worker": "^13.1.0",
		"@apollo/client": "^3.5.5",
		"@ever-platform/common": "^0.4.3",
		"@ever-platform/common-angular": "^0.4.3",
@@ -122,7 +122,6 @@
		"bootstrap": "^4.6.0",
		"browser-detect": "^0.2.28",
		"bson-objectid": "^2.0.1",
		"classlist.js": "^1.1.20150312",
		"core-js": "^3.18.3",
		"css-element-queries": "^1.2.3",
		"eventemitter3": "^4.0.7",
@@ -160,15 +159,14 @@
		"tslib": "^2.3.1",
		"uglify-js": "^3.14.2",
		"uuid": "^8.3.2",
		"web-animations-js": "^2.3.2",
		"zone.js": "~0.11.4"
	},
	"devDependencies": {
		"@angular-devkit/build-angular": "^13.0.4",
		"@angular-devkit/build-optimizer": "^0.1300.4",
		"@angular/cli": "~13.0.4",
		"@angular/compiler-cli": "~13.0.0",
		"@ngtools/webpack": "^13.0.4",
		"@angular-devkit/build-angular": "^13.1.0",
		"@angular-devkit/build-optimizer": "^0.1301.0",
		"@angular/cli": "^13.1.0",
		"@angular/compiler-cli": "^13.1.0",
		"@ngtools/webpack": "^13.1.0",
		"@types/googlemaps": "^3.43.3",
		"@types/jasmine": "~3.9.1",
		"@types/jasminewd2": "~2.0.10",
@@ -185,7 +183,7 @@
		"rimraf": "^3.0.2",
		"ts-node": "^10.4.0",
		"tslint": "^6.1.3",
		"typescript": "~4.4.4"
		"typescript": "~4.5.3"
	},
	"engines": {
		"node": ">=14.4.0",
+1 −1
Original line number Diff line number Diff line
@import '../../../styles/variables';
@import '~@angular/material/theming';
@import '@angular/material/theming';

:host {
	width: 100%;
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ const defaultLat = environment.DEFAULT_LATITUDE || 0;
@Component({
	selector: 'es-location-form',
	styleUrls: ['./location.component.scss'],
	templateUrl: '/location.component.html',
	templateUrl: './location.component.html',
})
export class LocationFormComponent
	implements OnInit, AfterViewInit, OnChanges, OnDestroy {
+1 −1
Original line number Diff line number Diff line
@import '../../styles/variables';
@import '~@angular/material/theming';
@import '@angular/material/theming';

:host {
	width: 100%;
Loading