-
Notifications
You must be signed in to change notification settings - Fork 58
chore: update nx packages #1147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
00a3f6a
nx17
toddbaert 9f96426
update types/node to fix buffer compile issues
toddbaert 96b9476
nx20
toddbaert b957d73
lint fixes
toddbaert 5ee352a
sync lockfile
toddbaert f141c6b
fixup: rm workspace-lint
toddbaert d0dad7a
add lint check for missing deps
toddbaert 8d41d0f
add licenses, rm prerelease
toddbaert ac94dda
more deps fixes
toddbaert bee239e
update and fix generators
toddbaert 17d07bd
update package.json
toddbaert 25618a3
lock msw
toddbaert 031d8b9
Update libs/shared/flagd-core/package.json
toddbaert 2a54bde
Update libs/shared/flagd-core/package.json
toddbaert 80036ec
fixup: imports
toddbaert 2fdc89a
fixup: new packages
toddbaert 98471b7
fixup: remaining lint issues
toddbaert 50588f3
fixup: lint and flagsmith deps
toddbaert File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| import { getJestProjects } from '@nx/jest'; | ||
| import { getJestProjectsAsync } from '@nx/jest'; | ||
|
|
||
| export default { | ||
| projects: getJestProjects(), | ||
| }; | ||
| export default async () => ({ | ||
| projects: await getJestProjectsAsync(), | ||
beeme1mr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| }); | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| { | ||
| "presets": [["minify", { "builtIns": false }]] | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,14 @@ | ||
| { | ||
| "name": "@openfeature/config-cat-web-provider", | ||
| "version": "0.1.3", | ||
| "license": "Apache-2.0", | ||
| "scripts": { | ||
| "publish-if-not-exists": "cp $NPM_CONFIG_USERCONFIG .npmrc && if [ \"$(npm show $npm_package_name@$npm_package_version version)\" = \"$(npm run current-version -s)\" ]; then echo 'already published, skipping'; else npm publish --access public; fi", | ||
| "current-version": "echo $npm_package_version" | ||
| }, | ||
| "peerDependencies": { | ||
| "@openfeature/web-sdk": "^1.0.0", | ||
| "configcat-js-ssr": "^8.4.3" | ||
| "configcat-js-ssr": "^8.4.3", | ||
| "@openfeature/config-cat-core": "0.1.0" | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,15 @@ | ||
| { | ||
| "name": "@openfeature/config-cat-provider", | ||
| "version": "0.7.2", | ||
| "license": "Apache-2.0", | ||
| "scripts": { | ||
| "publish-if-not-exists": "cp $NPM_CONFIG_USERCONFIG .npmrc && if [ \"$(npm show $npm_package_name@$npm_package_version version)\" = \"$(npm run current-version -s)\" ]; then echo 'already published, skipping'; else npm publish --access public; fi", | ||
| "current-version": "echo $npm_package_version" | ||
| }, | ||
| "peerDependencies": { | ||
| "@openfeature/server-sdk": "^1.13.5", | ||
| "configcat-node": "^11.3.1" | ||
| "configcat-node": "^11.3.1", | ||
| "@openfeature/config-cat-core": "0.1.0", | ||
| "configcat-common": "9.3.1" | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,12 @@ | ||
| { | ||
| "name": "@openfeature/env-var-provider", | ||
| "version": "0.3.1", | ||
| "license": "Apache-2.0", | ||
| "scripts": { | ||
| "publish-if-not-exists": "cp $NPM_CONFIG_USERCONFIG .npmrc && if [ \"$(npm show $npm_package_name@$npm_package_version version)\" = \"$(npm run current-version -s)\" ]; then echo 'already published, skipping'; else npm publish --access public; fi", | ||
| "current-version": "echo $npm_package_version" | ||
| }, | ||
| "peerDependencies": { | ||
| "@openfeature/server-sdk": "^1.13.0" | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.