Skip to content

Commit

Permalink
[eng/tools] Format package.json with two spaces for brevity (#29151)
Browse files Browse the repository at this point in the history
- Add globstar to PR paths
  • Loading branch information
mikeharder authored May 18, 2024
1 parent 1ffaacb commit 51e9bdf
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 58 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/suppressions-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
- .github/workflows/suppressions-test.yaml
- eng/tools/package.json
- eng/tools/tsconfig.json
- eng/tools/suppressions
- eng/tools/suppressions/**

jobs:
suppressions:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/typespec-validation-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ on:
- .github/workflows/typespec-validation-test.yaml
- eng/tools/package.json
- eng/tools/tsconfig.json
- eng/tools/suppressions
- eng/tools/typespec-validation
- eng/tools/suppressions/**
- eng/tools/typespec-validation/**

jobs:
typespec-validation:
Expand Down
54 changes: 27 additions & 27 deletions eng/tools/suppressions/package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
{
"name": "@azure-tools/suppressions",
"private": true,
"version": "0.0.1",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"get-suppressions": "cmd/get-suppressions.js"
},
"dependencies": {
"minimatch": "^9.0.4",
"yaml": "^2.4.2",
"zod": "^3.23.6",
"zod-validation-error": "^3.2.0"
},
"devDependencies": {
"@types/node": "^18.19.31",
"typescript": "~5.4.5",
"vitest": "^1.5.3"
},
"scripts": {
"build": "tsc",
"postinstall": "npm run build",
"test": "vitest"
},
"engines": {
"node": ">= 18.0.0"
}
"name": "@azure-tools/suppressions",
"private": true,
"version": "0.0.1",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"get-suppressions": "cmd/get-suppressions.js"
},
"dependencies": {
"minimatch": "^9.0.4",
"yaml": "^2.4.2",
"zod": "^3.23.6",
"zod-validation-error": "^3.2.0"
},
"devDependencies": {
"@types/node": "^18.19.31",
"typescript": "~5.4.5",
"vitest": "^1.5.3"
},
"scripts": {
"build": "tsc",
"postinstall": "npm run build",
"test": "vitest"
},
"engines": {
"node": ">= 18.0.0"
}
}
56 changes: 28 additions & 28 deletions eng/tools/typespec-validation/package.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
{
"name": "@azure-tools/typespec-validation",
"private": true,
"version": "0.0.1",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"tsv": "cmd/tsv.js"
},
"dependencies": {
"globby": "^14.0.1",
"simple-git": "^3.24.0",
"suppressions": "file:../suppressions",
"yaml": "^2.4.2"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^18.19.31",
"mocha": "^10.4.0",
"typescript": "~5.4.5"
},
"scripts": {
"build": "tsc",
"postinstall": "cd ../suppressions && npm run build && cd ../typespec-validation && npm run build",
"test": "npm run build && mocha --recursive --exit"
},
"engines": {
"node": ">= 18.0.0"
}
"name": "@azure-tools/typespec-validation",
"private": true,
"version": "0.0.1",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"tsv": "cmd/tsv.js"
},
"dependencies": {
"globby": "^14.0.1",
"simple-git": "^3.24.0",
"suppressions": "file:../suppressions",
"yaml": "^2.4.2"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^18.19.31",
"mocha": "^10.4.0",
"typescript": "~5.4.5"
},
"scripts": {
"build": "tsc",
"postinstall": "cd ../suppressions && npm run build && cd ../typespec-validation && npm run build",
"test": "npm run build && mocha --recursive --exit"
},
"engines": {
"node": ">= 18.0.0"
}
}

0 comments on commit 51e9bdf

Please sign in to comment.