Skip to content

Commit c8d6e40

Browse files
v3.1.0 - add the ability to import TS files directly (#203)
The plugins system was only able to load plugins via js files. A new feature was added that allows loading via ts files (#187). This PR is to release v3.1.0 (a minor bump because we're adding a new feature - does not break backwards compatability). Last version was 3.0.1.
2 parents d46b9f4 + 9d7a8fe commit c8d6e40

28 files changed

Lines changed: 1533 additions & 1106 deletions

.github/actions/auth/package-lock.json

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

.github/actions/auth/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"type": "module",
1515
"dependencies": {
1616
"@actions/core": "^3.0.0",
17-
"playwright": "^1.58.2"
17+
"playwright": "^1.59.1"
1818
},
1919
"devDependencies": {
20-
"@types/node": "^25.4.0",
21-
"typescript": "^5.9.3"
20+
"@types/node": "^25.6.0",
21+
"typescript": "^6.0.3"
2222
}
2323
}

.github/actions/auth/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"esModuleInterop": true,
77
"strict": true,
88
"rootDir": "src",
9-
"outDir": "dist"
9+
"outDir": "dist",
10+
"types": ["node"]
1011
},
1112
"include": [
1213
"src/**/*.ts"

.github/actions/file/package-lock.json

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

.github/actions/file/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@octokit/plugin-throttling": "^11.0.3"
1919
},
2020
"devDependencies": {
21-
"@types/node": "^25.4.0",
22-
"typescript": "^5.9.3"
21+
"@types/node": "^25.6.0",
22+
"typescript": "^6.0.3"
2323
}
2424
}

.github/actions/file/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"esModuleInterop": true,
77
"strict": true,
88
"rootDir": "src",
9-
"outDir": "dist"
9+
"outDir": "dist",
10+
"types": ["node"]
1011
},
1112
"include": [
1213
"src/**/*.ts"

0 commit comments

Comments
 (0)