mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Issue number: Internal --------- <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type (bugfix, feature, etc). Submit multiple pull requests if needed. --> ## What is the current behavior? <!-- Please describe the current behavior that you are modifying. --> With Ionic 8 we are dropping Angular 14 and 15 support. ## What is the new behavior? <!-- Please describe the behavior or changes that are being added by this PR. --> - This PR officially drops Angular 14 and 15 support. Note: The work to do this was done a while ago, but this branch was never merged into `feature-8.0`. The breaking change was already noted in the breaking change guide, so this is not an additional breaking change on top of what was already specified. ## Does this introduce a breaking change? - [x] Yes - [ ] No <!-- If this introduces a breaking change: 1. Describe the impact and migration path for existing applications below. 2. Update the BREAKING.md file with the breaking change. 3. Add "BREAKING CHANGE: [...]" to the commit description when merging. See https://github.com/ionic-team/ionic-framework/blob/main/.github/CONTRIBUTING.md#footer for more information. --> ## Other information <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. --> --------- Co-authored-by: Brandy Carney <brandyscarney@users.noreply.github.com> Co-authored-by: Maria Hutt <thetaPC@users.noreply.github.com> Co-authored-by: Amanda Johnston <90629384+amandaejohnston@users.noreply.github.com>
68 lines
1.9 KiB
JSON
68 lines
1.9 KiB
JSON
{
|
|
"name": "@ionic/angular-server",
|
|
"version": "8.0.0-beta.2",
|
|
"description": "Angular SSR Module for Ionic",
|
|
"keywords": [
|
|
"ionic",
|
|
"angular",
|
|
"universal",
|
|
"ssr",
|
|
"prerender",
|
|
"serverside"
|
|
],
|
|
"author": "Ionic Team",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ionic-team/ionic-framework.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/ionic-team/ionic/issues"
|
|
},
|
|
"publishConfig": {
|
|
"directory": "dist"
|
|
},
|
|
"homepage": "https://ionicframework.com/",
|
|
"scripts": {
|
|
"test": "echo 'angular no tests yet'",
|
|
"build": "ng-packagr -p ng-package.json -c tsconfig.json",
|
|
"build.prod": "npm run clean && npm run build",
|
|
"build.watch": "npm run build -- --watch",
|
|
"clean": "rm -rf ./dist",
|
|
"lint": "eslint . --ext .ts && npm run prettier",
|
|
"lint.fix": "eslint . --ext .ts --fix && npm run prettier.fix",
|
|
"prettier": "prettier \"**/*.ts\" --check",
|
|
"prettier.fix": "prettier \"**/*.ts\" --write"
|
|
},
|
|
"peerDependencies": {
|
|
"@angular/core": ">=16.0.0",
|
|
"@angular/platform-server": ">=16.0.0",
|
|
"rxjs": ">=7.5.0",
|
|
"zone.js": ">=0.13.0"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-eslint/eslint-plugin": "^16.0.0",
|
|
"@angular/animations": "^16.0.0",
|
|
"@angular/common": "^16.0.0",
|
|
"@angular/compiler": "^16.0.0",
|
|
"@angular/compiler-cli": "^16.0.0",
|
|
"@angular/core": "^16.0.0",
|
|
"@angular/platform-browser": "^16.0.0",
|
|
"@angular/platform-browser-dynamic": "^16.0.0",
|
|
"@angular/platform-server": "^16.0.0",
|
|
"@ionic/eslint-config": "^0.3.0",
|
|
"@ionic/prettier-config": "^2.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.2.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-plugin-import": "^2.25.2",
|
|
"ng-packagr": "^16.0.0",
|
|
"prettier": "^2.4.1",
|
|
"rxjs": "^7.8.0",
|
|
"typescript": "~4.9.3"
|
|
},
|
|
"prettier": "@ionic/prettier-config",
|
|
"dependencies": {
|
|
"@ionic/core": "^8.0.0-beta.2"
|
|
}
|
|
}
|