Skip to content

Commit

Permalink
[EngSys] Add legacy packages ***NO_CI***
Browse files Browse the repository at this point in the history
  • Loading branch information
mpodwysocki committed Oct 29, 2024
1 parent 7ac7cc4 commit 13fa305
Show file tree
Hide file tree
Showing 8 changed files with 68 additions and 23 deletions.
10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,18 @@
"check-format": "turbo run check-format",
"cspell": "cspell --no-progress .",
"format": "turbo run format",
"integration-test": "turbo run integration-test",
"integration-test:browser": "turbo run integration-test:browser",
"integration-test:node": "turbo run integration-test:node",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"preinstall": "npx only-allow pnpm",
"purge": "rimraf --glob \"sdk/**/node_modules/\""
"purge": "rimraf --glob \"sdk/**/node_modules/\"",
"test": "turbo run test",
"unit-test": "turbo run unit-test",
"unit-test:browser": "turbo run unit-test:browser",
"unit-test:node": "turbo run unit-test:node",
"update-snippets": "turbo run update-snippets"
},
"devDependencies": {
"@vitest/browser": "^2.1.2",
Expand Down
26 changes: 18 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -196,3 +196,7 @@ catalogs:
'@opentelemetry/sdk-trace-node': ^1.27.0
'@opentelemetry/semantic-conventions': ^1.27.0
'@opentelemetry/winston-transport': ^0.7.0
identity:
'@azure/msal-browser': ^3.26.1
'@azure/msal-node': ^2.15.0
'@azure/msal-node-extensions': ^1.3.0
2 changes: 1 addition & 1 deletion sdk/communication/communication-identity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"@azure/dev-tool": "workspace:*",
"@azure/eslint-plugin-azure-sdk": "workspace:*",
"@azure/identity": "catalog:internal",
"@azure/msal-node": "^2.9.2",
"@azure/msal-node": "catalog:identity",
"@types/chai": "catalog:legacy",
"@types/mocha": "catalog:legacy",
"@types/node": "catalog:",
Expand Down
4 changes: 2 additions & 2 deletions sdk/identity/identity-broker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
"dependencies": {
"@azure/core-auth": "workspace:*",
"@azure/identity": "workspace:*",
"@azure/msal-node": "^2.15.0",
"@azure/msal-node-extensions": "^1.3.0",
"@azure/msal-node": "catalog:identity",
"@azure/msal-node-extensions": "catalog:identity",
"tslib": "catalog:"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions sdk/identity/identity-cache-persistence/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
"dependencies": {
"@azure/core-auth": "workspace:*",
"@azure/identity": "workspace:*",
"@azure/msal-node": "^2.15.0",
"@azure/msal-node-extensions": "^1.3.0",
"@azure/msal-node": "catalog:identity",
"@azure/msal-node-extensions": "catalog:identity",
"keytar": "^7.6.0",
"tslib": "catalog:"
},
Expand Down
4 changes: 2 additions & 2 deletions sdk/identity/identity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@
"@azure/core-tracing": "workspace:*",
"@azure/core-util": "workspace:*",
"@azure/logger": "workspace:*",
"@azure/msal-browser": "^3.26.1",
"@azure/msal-node": "^2.15.0",
"@azure/msal-browser": "catalog:identity",
"@azure/msal-node": "catalog:identity",
"events": "^3.0.0",
"jws": "^4.0.0",
"open": "^8.0.0",
Expand Down
37 changes: 30 additions & 7 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,27 @@
"dependsOn": ["^build"],
"outputs": ["dist/**", "dist-esm/**", "dist-test/**", "types/**"]
},
"check-format": {
"dependsOn": ["^check-format"],
"cache": false
},
"clean": {
"dependsOn": ["^clean"],
"cache": false
},
"test": {
"dependsOn": ["^build"]
},
"format": {
"dependsOn": ["^format"]
},
"check-format": {
"dependsOn": ["^check-format"],
"dependsOn": ["^format"],
"cache": false
},
"integration-test": {
"dependsOn": ["^integration-test"]
},
"integration-test:browser": {
"dependsOn": ["^integration-test:browser"]
},
"integration-test:node": {
"dependsOn": ["^integration-test:node"]
},
"lint": {
"dependsOn": ["^lint"],
"cache": false
Expand All @@ -28,6 +35,22 @@
"dependsOn": ["^lint:fix"],
"cache": false
},
"test": {
"dependsOn": ["^test"]
},
"unit-test": {
"dependsOn": ["^unit-test"]
},
"unit-test:browser": {
"dependsOn": ["^unit-test:browser"]
},
"unit-test:node": {
"dependsOn": ["^unit-test:node"]
},
"update-snippets": {
"dependsOn": ["^update-snippets"],
"cache": false
},
"dev": {
"cache": true,
"persistent": true
Expand Down

0 comments on commit 13fa305

Please sign in to comment.