diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fba3b264..0eee3caca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# [14.0.1](https://github.com/IgniteUI/igniteui-cli/compare/v14.0.0...v14.0.1) (2024-09-05) + +## What's Changed + +* chore(react): increase build ram by @Lipata in https://github.com/IgniteUI/igniteui-cli/pull/1314 + +**Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v14.0.0...v14.0.1 + # [14.0.0](https://github.com/IgniteUI/igniteui-cli/compare/v13.4.3...v14.0.0) (2024-08-23) ## What's Changed @@ -28,6 +36,13 @@ * @mtsvyatkova made their first contribution in https://github.com/IgniteUI/igniteui-cli/pull/1288 **Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v13.4.3...v14.0.0 +# [13.4.4](https://github.com/IgniteUI/igniteui-cli/compare/v13.4.3...v13.4.4) (2024-09-05) + +## What's Changed + +* chore(react): increase build ram by @Lipata in https://github.com/IgniteUI/igniteui-cli/pull/1313 + +**Full Changelog**: https://github.com/IgniteUI/igniteui-cli/compare/v13.4.3...v13.4.4 # [13.4.3](https://github.com/IgniteUI/igniteui-cli/compare/v13.4.2...v13.4.3) (2024-08-22) diff --git a/packages/cli/package.json b/packages/cli/package.json index c9624c3a6..b41b9ec4b 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "igniteui-cli", - "version": "14.0.0", + "version": "14.0.1", "description": "CLI tool for creating Ignite UI projects", "keywords": [ "CLI", @@ -78,8 +78,8 @@ "all": true }, "dependencies": { - "@igniteui/angular-templates": "~18.1.1400", - "@igniteui/cli-core": "~14.0.0", + "@igniteui/angular-templates": "~18.1.1401", + "@igniteui/cli-core": "~14.0.1", "@types/yargs": "^17.0.33", "chalk": "^5.3.0", "glob": "^11.0.0", diff --git a/packages/cli/templates/quickstart/react/package.json b/packages/cli/templates/quickstart/react/package.json index d8de012de..689fdb3d3 100644 --- a/packages/cli/templates/quickstart/react/package.json +++ b/packages/cli/templates/quickstart/react/package.json @@ -36,7 +36,7 @@ "file-loader": "0.8.5", "html-webpack-plugin": "2.26.0", "style-loader": "0.13.1", - "webpack": "2.2.0", + "webpack": "5.94.0", "webpack-dev-server": "2.2.0" } } diff --git a/packages/cli/templates/react/igr-ts/projects/_base/files/package.json b/packages/cli/templates/react/igr-ts/projects/_base/files/package.json index e602b32e2..73d632b38 100644 --- a/packages/cli/templates/react/igr-ts/projects/_base/files/package.json +++ b/packages/cli/templates/react/igr-ts/projects/_base/files/package.json @@ -32,7 +32,7 @@ }, "scripts": { "start": "vite", - "build": "tsc && vite build", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", "preview": "vite preview", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "test": "vitest" diff --git a/packages/core/package.json b/packages/core/package.json index 10350b096..9f65ea26c 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/cli-core", - "version": "14.0.0", + "version": "14.0.1", "description": "Base types and functionality for Ignite UI CLI", "repository": { "type": "git", diff --git a/packages/igx-templates/package.json b/packages/igx-templates/package.json index 79197ec7e..099a81584 100644 --- a/packages/igx-templates/package.json +++ b/packages/igx-templates/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/angular-templates", - "version": "18.1.1400", + "version": "18.1.1401", "description": "Templates for Ignite UI for Angular projects and components", "repository": { "type": "git", @@ -12,7 +12,7 @@ "author": "Infragistics", "license": "MIT", "dependencies": { - "@igniteui/cli-core": "~14.0.0", + "@igniteui/cli-core": "~14.0.1", "typescript": "~5.4.3" } } diff --git a/packages/ng-schematics/package.json b/packages/ng-schematics/package.json index 59f466c3f..9107bb590 100644 --- a/packages/ng-schematics/package.json +++ b/packages/ng-schematics/package.json @@ -1,6 +1,6 @@ { "name": "@igniteui/angular-schematics", - "version": "18.1.1400", + "version": "18.1.1401", "description": "Ignite UI for Angular Schematics for ng new and ng generate", "repository": { "type": "git", @@ -20,8 +20,8 @@ "dependencies": { "@angular-devkit/core": "~14.0.0", "@angular-devkit/schematics": "~14.0.0", - "@igniteui/angular-templates": "~18.1.1400", - "@igniteui/cli-core": "~14.0.0", + "@igniteui/angular-templates": "~18.1.1401", + "@igniteui/cli-core": "~14.0.1", "@schematics/angular": "~14.0.0", "rxjs": "^6.6.3" },