Skip to content

Commit

Permalink
fix build issue (#22)
Browse files Browse the repository at this point in the history
* fix build issue

* fixes lodash issue
  • Loading branch information
ct-dixit authored Jan 9, 2025
1 parent 72d02ce commit 03b6784
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
4 changes: 2 additions & 2 deletions angular/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "1.7mb",
"maximumError": "1.7mb"
"maximumWarning": "2mb",
"maximumError": "2mb"
},
{
"type": "anyComponentStyle",
Expand Down
2 changes: 1 addition & 1 deletion angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
"bootstrap": "5.3.3",
"hammerjs": "2.0.8",
"jquery": "3.7.1",
"lodash": "4.17.21",
"lodash-es": "4.17.21",
"mousetrap": "1.6.5",
"ng-apexcharts": "1.11.0",
Expand All @@ -54,6 +53,7 @@
"@eslint/js": "^9.17.0",
"@types/jasmine": "~5.1.5",
"@types/lodash": "4.17.13",
"@types/lodash-es": "^4.17.12",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
Expand Down
2 changes: 1 addition & 1 deletion angular/src/app/theme/shared/filter/data-filter.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { Pipe, PipeTransform } from '@angular/core';

// project import
import * as _ from 'lodash';
import * as _ from 'lodash-es';

@Pipe({
name: 'dataFilter'
Expand Down
14 changes: 13 additions & 1 deletion angular/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2705,6 +2705,18 @@
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==

"@types/lodash-es@^4.17.12":
version "4.17.12"
resolved "https://registry.yarnpkg.com/@types/lodash-es/-/lodash-es-4.17.12.tgz#65f6d1e5f80539aa7cfbfc962de5def0cf4f341b"
integrity sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==
dependencies:
"@types/lodash" "*"

"@types/lodash@*":
version "4.17.14"
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.14.tgz#bafc053533f4cdc5fcc9635af46a963c1f3deaff"
integrity sha512-jsxagdikDiDBeIRaPYtArcT8my4tN1og7MtMRquFT3XNA6axxyHDRUemqDz/taRDdOUn0GnGHRCuff4q48sW9A==

"@types/[email protected]":
version "4.17.13"
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.13.tgz#786e2d67cfd95e32862143abe7463a7f90c300eb"
Expand Down Expand Up @@ -5565,7 +5577,7 @@ lodash.merge@^4.6.2:
resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==

lodash@4.17.21, lodash@^4.17.21:
lodash@^4.17.21:
version "4.17.21"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
Expand Down

0 comments on commit 03b6784

Please sign in to comment.