Skip to content

Commit

Permalink
fix(string-formatter): fixed string formatter dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JBBianchi committed Nov 29, 2023
1 parent 0730e59 commit 946d633
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/js-packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"string-formatter": {
"name": "@neuroglia/string-formatter",
"path": "./",
"dependencies": []
"dependencies": [
"@neuroglia/common"
]
},
"logging": {
"name": "@neuroglia/logging",
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/js-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,10 @@ jobs:

pipeline:
needs: changes
continue-on-error: true
strategy:
max-parallel: 1
fail-fast: false
matrix:
package: ${{ fromJSON(needs.changes.outputs.packages) }}
uses: ./.github/workflows/js-package-pipeline.yml
Expand Down
4 changes: 4 additions & 0 deletions projects/neuroglia/string-formatter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
"url": "https://github.com/neuroglia-io/js-framework/issues"
},
"homepage": "https://neuroglia.io",
"peerDependencies": {
"@neuroglia/common": "*",
"date-fns": "^2.18.0"
},
"dependencies": {
"tslib": "^2.0.0"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { get, isObject } from '@neuroglia/common';
import { get } from '@neuroglia/common';

Check failure on line 1 in projects/neuroglia/string-formatter/src/lib/string-formatter.ts

View workflow job for this annotation

GitHub Actions / build / build

Cannot find module '@neuroglia/common' or its corresponding type declarations.

/**
* Formats the provided message with the provided array of parameters
Expand Down

0 comments on commit 946d633

Please sign in to comment.