Skip to content

Commit 838d5ea

Browse files
authored
Merge pull request #30 from Azure/main
Merge main to release/preview/v1
2 parents 7e34f1a + e829207 commit 838d5ea

26 files changed

+574
-249
lines changed

.eslintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,6 @@
4040
"avoidEscape": true
4141
}
4242
],
43-
},
43+
"@typescript-eslint/no-explicit-any": "off"
44+
}
4445
}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [16.x, 18.x, 20.x]
16+
node-version: [18.x, 20.x]
1717

1818
steps:
1919
- uses: actions/checkout@v3

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,7 @@ FodyWeavers.xsd
400400
# bundled folder
401401
dist/
402402
dist-esm/
403+
out/
403404
types/
404405

405406
# dotenv
@@ -409,4 +410,4 @@ types/
409410
*.tgz
410411

411412
# examples
412-
examples/package-lock.json
413+
examples/package-lock.json

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pool:
1212
steps:
1313
- task: NodeTool@0
1414
inputs:
15-
versionSpec: '16.x'
15+
versionSpec: '18.x'
1616
displayName: 'Install Node.js'
1717

1818
- script: |

package-lock.json

Lines changed: 144 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@
1717
"README.md"
1818
],
1919
"scripts": {
20-
"build": "npm run clean && npm run build-cjs && npm run build-esm",
20+
"build": "npm run clean && npm run build-cjs && npm run build-esm && npm run build-test",
2121
"build-cjs": "rollup --config",
22-
"build-esm": "tsc -p ./",
23-
"clean": "rimraf dist dist-esm types",
22+
"build-esm": "tsc -p ./tsconfig.json",
23+
"build-test": "tsc -p ./tsconfig.test.json",
24+
"clean": "rimraf dist dist-esm out types",
2425
"dev": "rollup --config --watch",
2526
"lint": "eslint src/ test/",
2627
"fix-lint": "eslint src/ test/ --fix",
27-
"test": "mocha --timeout 10000"
28+
"test": "mocha out/test/*.test.{js,cjs,mjs} --timeout 10000"
2829
},
2930
"repository": {
3031
"type": "git",
@@ -33,7 +34,10 @@
3334
"license": "MIT",
3435
"devDependencies": {
3536
"@rollup/plugin-typescript": "^11.1.2",
37+
"@types/mocha": "^10.0.4",
3638
"@types/node": "^20.5.7",
39+
"@types/sinon": "^17.0.1",
40+
"@types/uuid": "^9.0.7",
3741
"@typescript-eslint/eslint-plugin": "^6.6.0",
3842
"@typescript-eslint/parser": "^6.6.0",
3943
"chai": "^4.3.7",
@@ -47,10 +51,11 @@
4751
"rollup-plugin-dts": "^5.3.0",
4852
"sinon": "^15.2.0",
4953
"tslib": "^2.6.0",
50-
"typescript": "^5.1.6"
54+
"typescript": "^5.1.6",
55+
"uuid": "^9.0.1"
5156
},
5257
"dependencies": {
53-
"@azure/app-configuration": "^1.4.1",
58+
"@azure/app-configuration": "^1.5.0",
5459
"@azure/identity": "^3.3.2",
5560
"@azure/keyvault-secrets": "^4.7.0"
5661
}

0 commit comments

Comments
 (0)