two-stroke 7.1.0 → 7.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,7 +16,7 @@ jobs:
16
16
  steps:
17
17
  - name: Dependabot metadata
18
18
  id: metadata
19
- uses: dependabot/fetch-metadata@v2.5.0
19
+ uses: dependabot/fetch-metadata@v3.0.0
20
20
  with:
21
21
  github-token: "${{ secrets.GITHUB_TOKEN }}"
22
22
  - name: Approve a PR
package/package.json CHANGED
@@ -59,7 +59,7 @@
59
59
  "url": "https://github.com/change-engine/two-stroke"
60
60
  },
61
61
  "type": "module",
62
- "version": "7.1.0",
62
+ "version": "7.2.0",
63
63
  "devDependencies": {
64
64
  "@types/eslint": "^9.6.1",
65
65
  "eslint": "^10.1.0",
@@ -0,0 +1,7 @@
1
+ minimumReleaseAge: 4320
2
+ minimumReleaseAgeExclude:
3
+ - "two-stroke"
4
+ - "eslint-config-two-stroke"
5
+ trustPolicy: no-downgrade
6
+ ignoreScripts: true
7
+ blockExoticSubdeps: true
package/tsconfig.json CHANGED
@@ -15,11 +15,12 @@
15
15
  "target": "ESNext",
16
16
  "types": [
17
17
  "./worker-configuration.d.ts",
18
- "vitest/globals"
18
+ "vitest/globals",
19
+ "@cloudflare/vitest-pool-workers/types"
19
20
  ],
20
21
  "verbatimModuleSyntax": true
21
22
  },
22
23
  "exclude": [
23
24
  "../../dist"
24
25
  ]
25
- }
26
+ }