Skip to content

Commit d5adb33

Browse files
authored
Merge pull request #3062 from Azure/ant/bump
Update package dependencies
2 parents 9404518 + 88c5516 commit d5adb33

File tree

12 files changed

+4450
-1923
lines changed

12 files changed

+4450
-1923
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61
version: 2
72
updates:
83
- package-ecosystem: "github-actions"
94
directory: "/"
105
schedule:
11-
interval: "monthly"
6+
interval: "weekly"
7+
day: "sunday"
128
- package-ecosystem: "npm"
139
directory: "/generator"
1410
schedule:
15-
interval: "monthly"
11+
interval: "weekly"
12+
day: "sunday"
1613
- package-ecosystem: "npm"
1714
directory: "/tools"
1815
schedule:
19-
interval: "monthly"
16+
interval: "weekly"
17+
day: "sunday"

generator/package-lock.json

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

generator/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@
2020
},
2121
"devDependencies": {
2222
"@ts-common/commonmark-to-markdown": "^2.0.2",
23-
"@types/async": "^3.2.20",
23+
"@types/async": "^3.2.24",
2424
"@types/js-yaml": "^4.0.9",
25-
"@types/lodash": "^4.14.200",
26-
"@types/node": "^20.12.2",
27-
"@types/yargs": "^17.0.24",
28-
"@typescript-eslint/eslint-plugin": "^7.6.0",
29-
"@typescript-eslint/parser": "^7.6.0",
30-
"async": "^3.2.4",
31-
"autorest": "^3.6.3",
25+
"@types/lodash": "^4.17.0",
26+
"@types/node": "^20.12.7",
27+
"@types/yargs": "^17.0.32",
28+
"@typescript-eslint/eslint-plugin": "^7.7.1",
29+
"@typescript-eslint/parser": "^7.7.1",
30+
"async": "^3.2.5",
31+
"autorest": "^3.7.1",
3232
"colors": "^1.4.0",
33-
"eslint": "^8.57.0",
33+
"eslint": "^8.56.0",
3434
"eslint-plugin-header": "^3.1.1",
3535
"js-yaml": "^4.1.0",
36-
"lodash": "^4.17.19",
37-
"ts-node": "^10.9.1",
38-
"typescript": "^5.2.2",
36+
"lodash": "^4.17.21",
37+
"ts-node": "^10.9.2",
38+
"typescript": "^5.4.5",
3939
"yargs": "^17.7.2"
4040
}
4141
}

tools/jest.config.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
3+
module.exports = {
4+
verbose: true,
5+
moduleFileExtensions: [
6+
"ts",
7+
"js"
8+
],
9+
transform: {
10+
'^.+\\.(ts|tsx)$': 'ts-jest'
11+
},
12+
testMatch: [
13+
'**/test/**/*.test.(ts)'
14+
],
15+
testEnvironment: 'node',
16+
};

0 commit comments

Comments
 (0)