Skip to content

Commit

Permalink
chore(release): 12.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
anh.pham committed Jan 18, 2023
1 parent b6e6509 commit 7ece1b2
Show file tree
Hide file tree
Showing 16 changed files with 3,034 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,3 @@ website/.yarn/*
!.yarn/versions
!/e2e/full-ivy-lib/node_modules
!/e2e/partial-ivy-lib/node_modules
src/transformers/downlevel_decorators_transform
src/ngtsc
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [12.2.5](https://github.com/thymikee/jest-preset-angular/compare/v12.2.4...v12.2.5) (2023-01-18)



## [12.2.4](https://github.com/thymikee/jest-preset-angular/compare/v12.2.3...v12.2.4) (2023-01-16)


Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-preset-angular",
"version": "12.2.4",
"version": "12.2.5",
"description": "Jest preset configuration for Angular projects",
"license": "MIT",
"engines": {
Expand All @@ -27,7 +27,7 @@
"testing"
],
"scripts": {
"build": "node scripts/prebuild.js && tsc -p tsconfig.build.json",
"build": "tsc -p tsconfig.build.json",
"postinstall": "husky install",
"lint": "eslint --ext .js,.ts .",
"lint-fix": "eslint --fix --ext .js,.ts .",
Expand Down
6 changes: 3 additions & 3 deletions scripts/prebuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ const ngTransformerPath = `./src/transformers/downlevel_decorators_transform`;
const bazelFileGlob = 'src/**/BUILD.bazel';
const ngTestFolder = 'src/ngtsc/reflection/test';
const ngTransformerURL =
'https://github.com/angular/angular/tree/main/packages/compiler-cli/src/transformers/downlevel_decorators_transform';
const ngReflectionURL = 'https://github.com/angular/angular/tree/main/packages/compiler-cli/src/ngtsc/reflection';
const tsCompatUrl = 'https://github.com/angular/angular/tree/main/packages/compiler-cli/src/ngtsc/ts_compatibility';
'https://github.com/angular/angular/blob/15.0.4/packages/compiler-cli/src/transformers/downlevel_decorators_transform';
const ngReflectionURL = 'https://github.com/angular/angular/blob/15.0.4/packages/compiler-cli/src/ngtsc/reflection';
const tsCompatUrl = 'https://github.com/angular/angular/blob/15.0.4/packages/compiler-cli/src/ngtsc/ts_compatibility';
const transformersFolder = './src/transformers';
const ngtscFolder = './src/ngtsc';

Expand Down
12 changes: 12 additions & 0 deletions src/ngtsc/reflection/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/

export * from './src/host';
export {typeNodeToValueExpr} from './src/type_to_value';
export {TypeScriptReflectionHost, filterToMembersWithDecorator, reflectIdentifierOfDeclaration, reflectNameOfDeclaration, reflectObjectLiteral, reflectTypeEntityToDeclaration} from './src/typescript';
export {isNamedClassDeclaration, isNamedFunctionDeclaration, isNamedVariableDeclaration} from './src/util';
Loading

0 comments on commit 7ece1b2

Please sign in to comment.