@mochabug/adaptkit 0.13.5 → 0.13.6

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.
@@ -30,7 +30,7 @@ export default {
30
30
  }
31
31
  });
32
32
  })
33
- .add('GET', '(/?)', async () => {
33
+ .add('GET', '{*any}', async () => {
34
34
  return new Response(helloWorldPage, {
35
35
  headers: {
36
36
  'Content-Type': 'text/html'
@@ -26,7 +26,7 @@ export default {
26
26
  ctx.waitUntil(sapi.complete('output', {}));
27
27
  return new Response();
28
28
  })
29
- .add('GET', '(/?)', async () => {
29
+ .add('GET', '{*any}', async () => {
30
30
  return new Response(helloWorld, {
31
31
  headers: {
32
32
  'Content-Type': 'text/html'
package/bin/index.js CHANGED
@@ -2107,7 +2107,7 @@ function handleVersion(bump, cmd) {
2107
2107
  }
2108
2108
  async function main() {
2109
2109
  const notifier = updateNotifier({
2110
- pkg: JSON.parse('{"name":"@mochabug/adaptkit","version":"0.13.5"}')
2110
+ pkg: JSON.parse('{"name":"@mochabug/adaptkit","version":"0.13.6"}')
2111
2111
  });
2112
2112
  notifier.notify({ isGlobal: true, defer: false });
2113
2113
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mochabug/adaptkit",
3
- "version": "0.13.5",
3
+ "version": "0.13.6",
4
4
  "description": "A cmd to create, emulate and publish Mochabug Adapt plugins",
5
5
  "main": "bin/index.js",
6
6
  "type": "module",
@@ -53,7 +53,7 @@
53
53
  "@types/semver": "^7.5.8",
54
54
  "@types/update-notifier": "^6.0.8",
55
55
  "jest": "^29.7.0",
56
- "rollup": "^4.25.0",
56
+ "rollup": "^4.26.0",
57
57
  "rollup-plugin-string": "^3.0.0",
58
58
  "ts-jest": "^29.2.5",
59
59
  "ts-node": "^10.9.2",