angular-estree-parser
Advanced tools
Comparing version 4.0.1 to 5.0.0
@@ -5,2 +5,21 @@ # Changelog | ||
## [5.0.0](https://github.com/prettier/angular-estree-parser/compare/v3.0.3...v5.0.0) (2022-11-20) | ||
### ⚠ BREAKING CHANGES | ||
* require `@angular/compiler` v15 (#236) | ||
* support for `@angular/compiler@14`, drop support for `@angular/compiler<14` (#233) | ||
### Features | ||
* require `@angular/compiler` v15 ([#236](https://github.com/prettier/angular-estree-parser/issues/236)) ([1640e77](https://github.com/prettier/angular-estree-parser/commit/1640e77ccb13ebdd9540292ea118d9742c395d01)) | ||
* support for `@angular/compiler@14`, drop support for `@angular/compiler<14` ([#233](https://github.com/prettier/angular-estree-parser/issues/233)) ([ce31031](https://github.com/prettier/angular-estree-parser/commit/ce31031fe7df73007b0de39b20e10c94c1e431ef)) | ||
### Bug Fixes | ||
* fix bundle ([f43a465](https://github.com/prettier/angular-estree-parser/commit/f43a46584e22a8e69e49b5f165106ff960b78a4f)) | ||
* fix shorthand object property detection ([#235](https://github.com/prettier/angular-estree-parser/issues/235)) ([5ebb640](https://github.com/prettier/angular-estree-parser/commit/5ebb64041b0e48ae0fba6580b68bff0bff4f7026)) | ||
### [4.0.1](https://github.com/prettier/angular-estree-parser/compare/v4.0.0...v4.0.1) (2022-10-10) | ||
@@ -7,0 +26,0 @@ |
{ | ||
"name": "angular-estree-parser", | ||
"version": "4.0.1", | ||
"version": "5.0.0", | ||
"description": "A parser that converts Angular source code into an ESTree-compatible form", | ||
"keywords": [], | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"main": "./lib/index.js", | ||
"types": "./lib/index.d.ts", | ||
"repository": "https://github.com/prettier/angular-estree-parser", | ||
@@ -17,7 +17,11 @@ "homepage": "https://github.com/prettier/angular-estree-parser#readme", | ||
"scripts": { | ||
"prepublish": "yarn run build", | ||
"fix": "yarn prettier . --write", | ||
"lint": "yarn prettier . --check && tslint -p ./tsconfig.json", | ||
"prepare": "yarn run build", | ||
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", | ||
"prebuild": "rm -rf ./lib", | ||
"lint": "run-p lint:*", | ||
"lint:eslint": "eslint --ext=.ts,.js,.cjs .", | ||
"lint:prettier": "prettier --check src", | ||
"fix": "run-s fix:*", | ||
"fix:eslint": "yarn lint:eslint --fix", | ||
"fix:prettier": "yarn lint:prettier --write", | ||
"prebuild": "del-cli ./lib", | ||
"build": "tsc -p ./tsconfig.build.json", | ||
@@ -28,25 +32,29 @@ "release": "yarn build && standard-version" | ||
"lines-and-columns": "^2.0.3", | ||
"tslib": "^2.4.0" | ||
"tslib": "^2.4.1" | ||
}, | ||
"devDependencies": { | ||
"@angular/compiler": "14.2.5", | ||
"@angular/compiler": "15.0.0", | ||
"@babel/code-frame": "7.18.6", | ||
"@babel/parser": "7.19.3", | ||
"@babel/types": "7.19.3", | ||
"@babel/parser": "7.20.3", | ||
"@babel/types": "7.20.2", | ||
"@types/babel-types": "7.0.11", | ||
"@types/babel__code-frame": "7.0.3", | ||
"@types/jest": "29.0.3", | ||
"@types/jest": "29.2.3", | ||
"@types/prettier": "2.7.1", | ||
"jest": "29.0.3", | ||
"@typescript-eslint/eslint-plugin": "5.43.0", | ||
"@typescript-eslint/parser": "5.43.0", | ||
"del-cli": "5.0.0", | ||
"eslint": "8.28.0", | ||
"eslint-config-prettier": "8.5.0", | ||
"eslint-plugin-import": "2.26.0", | ||
"jest": "29.3.1", | ||
"jest-snapshot-serializer-raw": "1.2.0", | ||
"npm-run-all": "4.1.5", | ||
"prettier": "2.7.1", | ||
"standard-version": "9.5.0", | ||
"ts-jest": "29.0.2", | ||
"tslint": "6.1.3", | ||
"tslint-config-prettier": "1.18.0", | ||
"tslint-plugin-prettier": "2.3.0", | ||
"typescript": "4.8.4" | ||
"ts-jest": "29.0.3", | ||
"typescript": "4.9.3" | ||
}, | ||
"peerDependencies": { | ||
"@angular/compiler": "^14.0.0" | ||
"@angular/compiler": "^15.0.0" | ||
}, | ||
@@ -57,5 +65,9 @@ "engines": { | ||
"files": [ | ||
"/lib/**/*" | ||
"./lib/**/*" | ||
], | ||
"type": "module" | ||
"type": "module", | ||
"publishConfig": { | ||
"access": "public", | ||
"registry": "https://registry.npmjs.org/" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Empty package
Supply chain riskPackage does not contain any code. It may be removed, is name squatting, or the result of a faulty package publish.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19516
21
4
0
2
+ Added@angular/compiler@15.2.10(transitive)
- Removed@angular/compiler@14.3.0(transitive)
Updatedtslib@^2.4.1