Skip to content

Commit

Permalink
Merge pull request #1240 from IgniteUI/nalipiev/npmignore-scripts
Browse files Browse the repository at this point in the history
fix: include js files in ng-schematics/scripts w/ newer npm version
  • Loading branch information
Lipata authored Apr 11, 2024
2 parents 1dc72f6 + dac8dc4 commit ef06df4
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 10 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# [13.1.13](https://github.com/IgniteUI/igniteui-cli/compare/v13.1.12...v13.1.13) (2024-04-11)
# [13.1.14](https://github.com/IgniteUI/igniteui-cli/compare/v13.1.13...v13.1.14) (2024-04-11)

## What's Changed
* fix: include js files in ng-schematics/scripts w/ newer npm version by @Lipata in https://github.com/IgniteUI/igniteui-cli/pull/1240

# [13.1.13](https://github.com/IgniteUI/igniteui-cli/compare/v13.1.13...v13.1.14) (2024-04-11)

## What's Changed
* feat(react): turn off no-explicit-any in eslint by @igdmdimitrov in https://github.com/IgniteUI/igniteui-cli/pull/1230
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "igniteui-cli",
"version": "13.1.13",
"version": "13.1.14",
"description": "CLI tool for creating Ignite UI projects",
"keywords": [
"CLI",
Expand Down Expand Up @@ -78,8 +78,8 @@
"all": true
},
"dependencies": {
"@igniteui/angular-templates": "~17.1.13113",
"@igniteui/cli-core": "~13.1.13",
"@igniteui/angular-templates": "~17.1.13114",
"@igniteui/cli-core": "~13.1.14",
"chalk": "^2.3.2",
"fs-extra": "^3.0.1",
"glob": "^7.1.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/cli-core",
"version": "13.1.13",
"version": "13.1.14",
"description": "Base types and functionality for Ignite UI CLI",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/igx-templates/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/angular-templates",
"version": "17.1.13113",
"version": "17.1.13114",
"description": "Templates for Ignite UI for Angular projects and components",
"repository": {
"type": "git",
Expand All @@ -12,7 +12,7 @@
"author": "Infragistics",
"license": "MIT",
"dependencies": {
"@igniteui/cli-core": "~13.1.13",
"@igniteui/cli-core": "~13.1.14",
"typescript": "~5.4.3"
}
}
2 changes: 2 additions & 0 deletions packages/ng-schematics/.npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Ignores TypeScript files, but keeps definitions.
*.ts
!*.d.ts
# override root gitignore
!scripts/*.js
6 changes: 3 additions & 3 deletions packages/ng-schematics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@igniteui/angular-schematics",
"version": "17.1.13113",
"version": "17.1.13114",
"description": "Ignite UI for Angular Schematics for ng new and ng generate",
"repository": {
"type": "git",
Expand All @@ -20,8 +20,8 @@
"dependencies": {
"@angular-devkit/core": "~14.0.0",
"@angular-devkit/schematics": "~14.0.0",
"@igniteui/angular-templates": "~17.1.13113",
"@igniteui/cli-core": "~13.1.13",
"@igniteui/angular-templates": "~17.1.13114",
"@igniteui/cli-core": "~13.1.14",
"@schematics/angular": "~14.0.0",
"rxjs": "^6.6.3"
},
Expand Down

0 comments on commit ef06df4

Please sign in to comment.