Skip to content

Merge main to release/preview/v1 #30

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
merged 8 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,6 @@
"avoidEscape": true
}
],
},
"@typescript-eslint/no-explicit-any": "off"
}
}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,7 @@ FodyWeavers.xsd
# bundled folder
dist/
dist-esm/
out/
types/

# dotenv
Expand All @@ -409,4 +410,4 @@ types/
*.tgz

# examples
examples/package-lock.json
examples/package-lock.json
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pool:
steps:
- task: NodeTool@0
inputs:
versionSpec: '16.x'
versionSpec: '18.x'
displayName: 'Install Node.js'

- script: |
Expand Down
167 changes: 144 additions & 23 deletions package-lock.json

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

17 changes: 11 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,15 @@
"README.md"
],
"scripts": {
"build": "npm run clean && npm run build-cjs && npm run build-esm",
"build": "npm run clean && npm run build-cjs && npm run build-esm && npm run build-test",
"build-cjs": "rollup --config",
"build-esm": "tsc -p ./",
"clean": "rimraf dist dist-esm types",
"build-esm": "tsc -p ./tsconfig.json",
"build-test": "tsc -p ./tsconfig.test.json",
"clean": "rimraf dist dist-esm out types",
"dev": "rollup --config --watch",
"lint": "eslint src/ test/",
"fix-lint": "eslint src/ test/ --fix",
"test": "mocha --timeout 10000"
"test": "mocha out/test/*.test.{js,cjs,mjs} --timeout 10000"
},
"repository": {
"type": "git",
Expand All @@ -33,7 +34,10 @@
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"@types/mocha": "^10.0.4",
"@types/node": "^20.5.7",
"@types/sinon": "^17.0.1",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"chai": "^4.3.7",
Expand All @@ -47,10 +51,11 @@
"rollup-plugin-dts": "^5.3.0",
"sinon": "^15.2.0",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
"typescript": "^5.1.6",
"uuid": "^9.0.1"
},
"dependencies": {
"@azure/app-configuration": "^1.4.1",
"@azure/app-configuration": "^1.5.0",
"@azure/identity": "^3.3.2",
"@azure/keyvault-secrets": "^4.7.0"
}
Expand Down
Loading