chore: working live-reload of angular project

Had to bump the angular dependency versions for ng-packagr. Need to validate if that is required or just a warning. We need to target v12 to support the versions of Angular we target.
This commit is contained in:
Sean Perkins
2022-10-20 15:18:46 -04:00
parent 19d29f06b1
commit 3ea3c39992
7 changed files with 15575 additions and 855 deletions

14
angular/ng-package.json Normal file
View File

@@ -0,0 +1,14 @@
{
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
"assets": [
{
"glob": "**/*",
"input": "node_modules/@ionic/core/css",
"output": "./css"
}
],
"lib": {
"entryFile": "src/index.ts"
},
"allowedNonPeerDependencies": ["@ionic/core", "jsonc-parser"]
}

View File

@@ -23,7 +23,8 @@
"url": "https://github.com/ionic-team/ionic/issues"
},
"publishConfig": {
"directory": "dist"
"directory": "dist",
"linkDirectory": true
},
"homepage": "https://ionicframework.com/",
"scripts": {
@@ -31,10 +32,10 @@
"build": "npm run clean && npm run build.ng && npm run build.core && npm run clean-generated",
"build.core": "node scripts/build-core.js",
"build.link": "npm run build && node scripts/link-copy.js",
"build.ng": "ng-packagr -p package.json -c tsconfig.json",
"build.ng": "ng-packagr -p ng-package.json -c tsconfig.json",
"clean": "node scripts/clean.js",
"clean-generated": "node ./scripts/clean-generated.js",
"dev": "tsc -p . --watch",
"dev": "ng-packagr -p ng-package.json -c tsconfig.json -w",
"lint": "npm run eslint && npm run prettier -- --write",
"lint.fix": "npm run eslint -- --fix",
"fmt": "npm run eslint -- --fix && npm run prettier -- --write",
@@ -42,7 +43,6 @@
"eslint": "eslint . --ext .ts",
"prerelease": "npm run validate && np prerelease --yolo --any-branch --tag next",
"test": "echo 'angular no tests yet'",
"tsc": "tsc -p .",
"validate": "npm i && npm run lint && npm run test && npm run build"
},
"dependencies": {
@@ -63,13 +63,13 @@
"@angular-eslint/eslint-plugin": "^12.5.0",
"@angular-eslint/eslint-plugin-template": "^12.5.0",
"@angular-eslint/template-parser": "^12.5.0",
"@angular/common": "^12.0.0",
"@angular/compiler": "^12.0.0",
"@angular/compiler-cli": "^12.0.0",
"@angular/core": "^12.0.0",
"@angular/forms": "^12.0.0",
"@angular/platform-browser": ">=12.0.0",
"@angular/router": "^12.0.0",
"@angular/common": "^14.0.0",
"@angular/compiler": "^14.0.0",
"@angular/compiler-cli": "^14.0.0",
"@angular/core": "^14.0.0",
"@angular/forms": "^14.0.0",
"@angular/platform-browser": ">=14.0.0",
"@angular/router": "^14.0.0",
"@ionic/eslint-config": "^0.3.0",
"@ionic/prettier-config": "^2.0.0",
"@schematics/angular": "^12.2.9",
@@ -79,22 +79,13 @@
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.2",
"fs-extra": "^7.0.0",
"ng-packagr": "^12.0.0",
"ng-packagr": "^14.0.0",
"prettier": "^2.4.1",
"rxjs": "^6.6.2",
"typescript": "4.2.4",
"typescript": "^4.6.0",
"typescript-eslint-language-service": "^4.1.5",
"zone.js": "~0.11.4"
},
"prettier": "@ionic/prettier-config",
"schematics": "./schematics/collection.json",
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
},
"allowedNonPeerDependencies": [
"@ionic/core",
"jsonc-parser"
]
}
"schematics": "./schematics/collection.json"
}

View File

@@ -29,8 +29,8 @@
"@angular/platform-browser-dynamic": "^12.2.16",
"@angular/platform-server": "^12.2.16",
"@angular/router": "^12.2.16",
"@ionic/angular": "^6.1.15",
"@ionic/angular-server": "^6.1.15",
"@ionic/angular": "workspace:*",
"@ionic/angular-server": "workspace:*",
"@nguniversal/express-engine": "^12.1.3",
"angular-in-memory-web-api": "^0.11.0",
"core-js": "^2.6.11",

View File

@@ -29,8 +29,8 @@
"@angular/platform-browser-dynamic": "^13.1.3",
"@angular/platform-server": "^13.1.3",
"@angular/router": "^13.1.3",
"@ionic/angular": "^6.1.15",
"@ionic/angular-server": "^6.1.15",
"@ionic/angular": "workspace:*",
"@ionic/angular-server": "workspace:*",
"@nguniversal/express-engine": "^13.1.1",
"angular-in-memory-web-api": "^0.11.0",
"core-js": "^2.6.11",

View File

@@ -29,8 +29,8 @@
"@angular/platform-browser-dynamic": "^14.1.0",
"@angular/platform-server": "^14.1.0",
"@angular/router": "^14.1.0",
"@ionic/angular": "^6.1.15",
"@ionic/angular-server": "^6.1.15",
"@ionic/angular": "workspace:*",
"@ionic/angular-server": "workspace:*",
"@nguniversal/express-engine": "^14.0.3",
"angular-in-memory-web-api": "^0.11.0",
"core-js": "^2.6.11",

16362
pnpm-lock.yaml generated
View File

File diff suppressed because it is too large Load Diff

View File

@@ -3,6 +3,5 @@ packages:
- "packages/**"
- "core"
- "angular"
# exclude packages that are inside test directories
- "!**/test/**"
- "!**/test-app/**"
- "angular/test/build/**"
- "!angular/test/apps/**"