@stacksjs/cloud 0.58.58 → 0.58.60

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.
package/dist/index.js CHANGED
@@ -891,7 +891,7 @@ class DocsStack {
891
891
  runtime: lambda3.Runtime.NODEJS_18_X,
892
892
  handler: "dist/origin-request.handler",
893
893
  code: lambda3.Code.fromAsset(p3.corePath("cloud/dist.zip"), {
894
- assetHash: originRequestFunctionHash,
894
+ assetHash: originRequestFunctionHash(),
895
895
  assetHashType: AssetHashType.CUSTOM
896
896
  })
897
897
  });
@@ -1810,26 +1810,25 @@ class QueueStack {
1810
1810
  }
1811
1811
  async init() {
1812
1812
  const jobsDir = path6.jobsPath();
1813
- try {
1814
- const jobFiles = await fs.readdir(jobsDir);
1815
- const actionFiles = await fs.readdir(actionsDir);
1816
- const jobs = [];
1817
- for (const file2 of jobFiles) {
1818
- if (!file2.endsWith(".ts"))
1819
- continue;
1820
- const filePath = path6.jobsPath(file2);
1821
- jobs.push(await this.loadModule(filePath));
1822
- }
1823
- for (const file2 of actionFiles) {
1824
- if (!file2.endsWith(".ts"))
1825
- continue;
1826
- const filePath = path6.actionsPath(file2);
1827
- jobs.push(await this.loadModule(filePath));
1828
- }
1829
- for (const job of jobs)
1830
- await this.createQueueRule(job);
1831
- } catch (err2) {
1832
- console.error("Error reading the jobs directory:", err2);
1813
+ const actionsDir = path6.appPath("Actions");
1814
+ const jobFiles = await fs.readdir(jobsDir);
1815
+ const actionFiles = await fs.readdir(actionsDir);
1816
+ const jobs = [];
1817
+ for (const file of jobFiles) {
1818
+ if (!file.endsWith(".ts"))
1819
+ continue;
1820
+ const jobPath = path6.jobsPath(file);
1821
+ const job = await this.loadModule(jobPath);
1822
+ this.createQueueRule(job, file);
1823
+ jobs.push(job);
1824
+ }
1825
+ for (const file of actionFiles) {
1826
+ if (!file.endsWith(".ts"))
1827
+ continue;
1828
+ const actionPath = path6.appPath(`Actions/${file}`);
1829
+ const action = await this.loadModule(actionPath);
1830
+ this.createQueueRule(action, file);
1831
+ jobs.push(action);
1833
1832
  }
1834
1833
  }
1835
1834
  cronScheduleFromRate(rate) {
@@ -1843,12 +1842,12 @@ class QueueStack {
1843
1842
  };
1844
1843
  }
1845
1844
  async loadModule(filePath) {
1846
- const jobModule2 = await import(filePath);
1847
- return jobModule2;
1845
+ const jobModule = await import(filePath);
1846
+ return jobModule;
1848
1847
  }
1849
- createQueueRule(job) {
1850
- const rate = job.default?.rate;
1851
- if (!rate || job.default?.enabled === false)
1848
+ createQueueRule(module, file) {
1849
+ const rate = module.default?.rate;
1850
+ if (!rate || module.default?.enabled === false)
1852
1851
  return;
1853
1852
  const schedule = Schedule.cron(this.cronScheduleFromRate(rate));
1854
1853
  const id = `QueueRule${pascalCase(file.replace(".ts", ""))}`;
@@ -1873,19 +1872,19 @@ class QueueStack {
1873
1872
  },
1874
1873
  {
1875
1874
  name: "JOB_BACKOFF_FACTOR",
1876
- value: jobModule.default?.backoffFactor
1875
+ value: module.default?.backoffFactor
1877
1876
  },
1878
1877
  {
1879
1878
  name: "JOB_RETRIES",
1880
- value: jobModule.default?.tries
1879
+ value: module.default?.tries
1881
1880
  },
1882
1881
  {
1883
1882
  name: "JOB_INITIAL_DELAY",
1884
- value: jobModule.default?.initialDelay
1883
+ value: module.default?.initialDelay
1885
1884
  },
1886
1885
  {
1887
1886
  name: "JOB_JITTER",
1888
- value: jobModule.default?.jitter
1887
+ value: module.default?.jitter
1889
1888
  }
1890
1889
  ]
1891
1890
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/cloud",
3
3
  "type": "module",
4
- "version": "0.58.58",
4
+ "version": "0.58.60",
5
5
  "description": "The Stacks cloud/serverless integration & implementation.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -55,19 +55,19 @@
55
55
  "prepublishOnly": "bun run build"
56
56
  },
57
57
  "peerDependencies": {
58
- "@aws-sdk/client-bedrock": "^3.509.0",
59
- "@aws-sdk/client-cloudformation": "^3.509.0",
60
- "@aws-sdk/client-cloudfront": "^3.509.0",
61
- "@aws-sdk/client-cloudwatch-logs": "^3.509.0",
62
- "@aws-sdk/client-ec2": "^3.509.0",
63
- "@aws-sdk/client-efs": "^3.509.0",
64
- "@aws-sdk/client-iam": "^3.509.0",
65
- "@aws-sdk/client-lambda": "^3.509.0",
66
- "@aws-sdk/client-route-53-domains": "^3.509.0",
67
- "@aws-sdk/client-s3": "^3.509.0",
68
- "@aws-sdk/client-ses": "^3.509.0",
69
- "@aws-sdk/client-sesv2": "^3.509.0",
70
- "@aws-sdk/client-ssm": "^3.509.0",
58
+ "@aws-sdk/client-bedrock": "^3.511.0",
59
+ "@aws-sdk/client-cloudformation": "^3.511.0",
60
+ "@aws-sdk/client-cloudfront": "^3.511.0",
61
+ "@aws-sdk/client-cloudwatch-logs": "^3.511.0",
62
+ "@aws-sdk/client-ec2": "^3.511.0",
63
+ "@aws-sdk/client-efs": "^3.511.0",
64
+ "@aws-sdk/client-iam": "^3.511.0",
65
+ "@aws-sdk/client-lambda": "^3.511.0",
66
+ "@aws-sdk/client-route-53-domains": "^3.511.0",
67
+ "@aws-sdk/client-s3": "^3.511.0",
68
+ "@aws-sdk/client-ses": "^3.511.0",
69
+ "@aws-sdk/client-sesv2": "^3.511.0",
70
+ "@aws-sdk/client-ssm": "^3.511.0",
71
71
  "@stacksjs/config": "latest",
72
72
  "@stacksjs/env": "latest",
73
73
  "@stacksjs/logging": "latest",
@@ -79,20 +79,20 @@
79
79
  "@stacksjs/validation": "latest"
80
80
  },
81
81
  "dependencies": {
82
- "@aws-sdk/client-bedrock": "^3.509.0",
83
- "@aws-sdk/client-cloudformation": "^3.509.0",
84
- "@aws-sdk/client-cloudfront": "^3.509.0",
85
- "@aws-sdk/client-cloudwatch-logs": "^3.509.0",
86
- "@aws-sdk/client-dynamodb": "3.509.0",
87
- "@aws-sdk/client-ec2": "^3.509.0",
88
- "@aws-sdk/client-efs": "^3.509.0",
89
- "@aws-sdk/client-iam": "^3.509.0",
90
- "@aws-sdk/client-lambda": "^3.509.0",
91
- "@aws-sdk/client-route-53-domains": "^3.509.0",
92
- "@aws-sdk/client-s3": "^3.509.0",
93
- "@aws-sdk/client-ses": "^3.509.0",
94
- "@aws-sdk/client-sesv2": "^3.509.0",
95
- "@aws-sdk/client-ssm": "^3.509.0",
82
+ "@aws-sdk/client-bedrock": "^3.511.0",
83
+ "@aws-sdk/client-cloudformation": "^3.511.0",
84
+ "@aws-sdk/client-cloudfront": "^3.511.0",
85
+ "@aws-sdk/client-cloudwatch-logs": "^3.511.0",
86
+ "@aws-sdk/client-dynamodb": "3.511.0",
87
+ "@aws-sdk/client-ec2": "^3.511.0",
88
+ "@aws-sdk/client-efs": "^3.511.0",
89
+ "@aws-sdk/client-iam": "^3.511.0",
90
+ "@aws-sdk/client-lambda": "^3.511.0",
91
+ "@aws-sdk/client-route-53-domains": "^3.511.0",
92
+ "@aws-sdk/client-s3": "^3.511.0",
93
+ "@aws-sdk/client-ses": "^3.511.0",
94
+ "@aws-sdk/client-sesv2": "^3.511.0",
95
+ "@aws-sdk/client-ssm": "^3.511.0",
96
96
  "@stacksjs/config": "latest",
97
97
  "@stacksjs/dns": "latest",
98
98
  "@stacksjs/env": "latest",
@@ -102,18 +102,18 @@
102
102
  "@stacksjs/storage": "latest",
103
103
  "@stacksjs/utils": "latest",
104
104
  "@stacksjs/validation": "latest",
105
- "aws-cdk": "^2.126.0",
106
- "aws-cdk-lib": "^2.126.0",
105
+ "aws-cdk": "^2.127.0",
106
+ "aws-cdk-lib": "^2.127.0",
107
107
  "aws4fetch": "^1.0.17",
108
108
  "constructs": "^10.3.0"
109
109
  },
110
110
  "devDependencies": {
111
- "@oclif/plugin-plugins": "^4.2.1",
111
+ "@oclif/plugin-plugins": "^4.2.2",
112
112
  "@stacksjs/cli": "latest",
113
113
  "@stacksjs/development": "latest",
114
114
  "@stacksjs/env": "latest",
115
115
  "jszip": "^3.10.1",
116
- "oclif": "^4.4.7",
116
+ "oclif": "^4.4.11",
117
117
  "source-map-support": "^0.5.21"
118
118
  }
119
119
  }
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "aws-sdk-layer",
3
- "version": "0.58.57",
3
+ "version": "0.58.58",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "aws-sdk-layer",
9
- "version": "0.58.57",
9
+ "version": "0.58.58",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
- "aws-sdk": "^2.1553.0"
12
+ "aws-sdk": "^2.1555.0"
13
13
  }
14
14
  },
15
15
  "node_modules/available-typed-arrays": {
@@ -24,9 +24,9 @@
24
24
  }
25
25
  },
26
26
  "node_modules/aws-sdk": {
27
- "version": "2.1553.0",
28
- "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1553.0.tgz",
29
- "integrity": "sha512-CfZaw8dR9e642aBOeFhkFL7KoQApeLR15uH2IQqfL/12snWYayAAesYh0tEaU+XbhrH0CUsf2Zro5IraEXEZMg==",
27
+ "version": "2.1555.0",
28
+ "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1555.0.tgz",
29
+ "integrity": "sha512-hjYs1MQkJxdHnoZm8hypqGy4PQKWVUs19McdXRXWNXr97V0il4xcUpIfvjHQ9x9EjP0p/jyIx9/BtyrR68jnUQ==",
30
30
  "dependencies": {
31
31
  "buffer": "4.9.2",
32
32
  "events": "1.1.1",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aws-sdk-layer",
3
- "version": "0.58.58",
3
+ "version": "0.58.60",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -10,6 +10,6 @@
10
10
  "test": "echo \"Error: no test specified\" && exit 1"
11
11
  },
12
12
  "dependencies": {
13
- "aws-sdk": "^2.1553.0"
13
+ "aws-sdk": "^2.1555.0"
14
14
  }
15
15
  }
@@ -1,85 +1,86 @@
1
- /* eslint-disable no-new */
2
- // TODO: finish this cloudwatch dashboard
3
- // import type { aws_lambda as lambda } from 'aws-cdk-lib'
4
- import { Aws, CfnOutput as Output, aws_cloudwatch as cloudwatch } from 'aws-cdk-lib'
5
- import type { Construct } from 'constructs'
6
- import type { NestedCloudProps } from '../types'
7
-
8
- export interface DashboardStackProps extends NestedCloudProps {
9
- dashboardName?: string
10
- }
11
-
12
- export class DashboardStack {
13
- // lambdaFunction: lambda.Function
14
- dashboard: cloudwatch.Dashboard
15
-
16
- constructor(scope: Construct, props: DashboardStackProps) {
17
- const dashboardName = props.dashboardName || 'StacksDashboard'
18
-
19
- // Create Sample Lambda Function which will create metrics
20
- // this.lambdaFunction = new Function(this, 'SampleLambda', {
21
- // handler: 'lambda-handler.handler',
22
- // runtime: Runtime.PYTHON_3_7,
23
- // code: new AssetCode(`./lambda`),
24
- // memorySize: 512,
25
- // timeout: Duration.seconds(10),
26
- // })
27
-
28
- // Create CloudWatch Dashboard
29
- this.dashboard = new cloudwatch.Dashboard(scope, 'SampleLambdaDashboard', {
30
- dashboardName,
31
- })
32
-
33
- // Create Title for Dashboard
34
- this.dashboard.addWidgets(new cloudwatch.TextWidget({
35
- markdown: `# Dashboard: ${this.lambdaFunction.functionName}`,
36
- height: 1,
37
- width: 24,
38
- }))
39
-
40
- // Create CloudWatch Dashboard Widgets: Errors, Invocations, Duration, Throttles
41
- this.dashboard.addWidgets(new cloudwatch.GraphWidget({
42
- title: 'Invocations',
43
- left: [this.lambdaFunction.metricInvocations()],
44
- width: 24,
45
- }))
46
-
47
- this.dashboard.addWidgets(new cloudwatch.GraphWidget({
48
- title: 'Errors',
49
- left: [this.lambdaFunction.metricErrors()],
50
- width: 24,
51
- }))
52
-
53
- this.dashboard.addWidgets(new cloudwatch.GraphWidget({
54
- title: 'Duration',
55
- left: [this.lambdaFunction.metricDuration()],
56
- width: 24,
57
- }))
58
-
59
- this.dashboard.addWidgets(new cloudwatch.GraphWidget({
60
- title: 'Throttles',
61
- left: [this.lambdaFunction.metricThrottles()],
62
- width: 24,
63
- }))
64
-
65
- // Create Widget to show last 20 Log Entries
66
- this.dashboard.addWidgets(new cloudwatch.LogQueryWidget({
67
- logGroupNames: [this.lambdaFunction.logGroup.logGroupName],
68
- queryLines: [
69
- 'fields @timestamp, @message',
70
- 'sort @timestamp desc',
71
- 'limit 20',
72
- ],
73
- width: 24,
74
- }))
75
-
76
- // Generate Output
77
- const cloudwatchDashboardURL = `https://${Aws.REGION}.console.aws.amazon.com/cloudwatch/home?region=${Aws.REGION}#dashboards:name=${dashboardName}`
78
-
79
- new Output(scope, 'DashboardOutput', {
80
- value: cloudwatchDashboardURL,
81
- description: 'The CloudWatch Dashboard URL',
82
- exportName: 'StacksDashboardURL',
83
- })
84
- }
85
- }
1
+ // /* eslint-disable no-new */
2
+ // // TODO: finish this cloudwatch dashboard
3
+ // // import type { aws_lambda as lambda } from 'aws-cdk-lib'
4
+ // import { Aws, CfnOutput as Output, aws_cloudwatch as cloudwatch } from 'aws-cdk-lib'
5
+ // import type { Construct } from 'constructs'
6
+ // import type { NestedCloudProps } from '../types'
7
+ //
8
+ // export interface DashboardStackProps extends NestedCloudProps {
9
+ // dashboardName?: string
10
+ // }
11
+ //
12
+ // export class DashboardStack {
13
+ // // lambdaFunction: lambda.Function
14
+ // dashboard: cloudwatch.Dashboard
15
+ //
16
+ // constructor(scope: Construct, props: DashboardStackProps) {
17
+ // const dashboardName = props.dashboardName || 'StacksDashboard'
18
+ //
19
+ // // Create Sample Lambda Function which will create metrics
20
+ // // this.lambdaFunction = new Function(this, 'SampleLambda', {
21
+ // // handler: 'lambda-handler.handler',
22
+ // // runtime: Runtime.PYTHON_3_7,
23
+ // // code: new AssetCode(`./lambda`),
24
+ // // memorySize: 512,
25
+ // // timeout: Duration.seconds(10),
26
+ // // })
27
+ //
28
+ // // Create CloudWatch Dashboard
29
+ // this.dashboard = new cloudwatch.Dashboard(scope, 'SampleLambdaDashboard', {
30
+ // dashboardName,
31
+ // })
32
+ //
33
+ // // Create Title for Dashboard
34
+ // this.dashboard.addWidgets(new cloudwatch.TextWidget({
35
+ // markdown: `# Dashboard: `,
36
+ // // markdown: `# Dashboard: ${this.lambdaFunction.functionName}`,
37
+ // height: 1,
38
+ // width: 24,
39
+ // }))
40
+ //
41
+ // // Create CloudWatch Dashboard Widgets: Errors, Invocations, Duration, Throttles
42
+ // this.dashboard.addWidgets(new cloudwatch.GraphWidget({
43
+ // title: 'Invocations',
44
+ // left: [this.lambdaFunction.metricInvocations()],
45
+ // width: 24,
46
+ // }))
47
+ //
48
+ // this.dashboard.addWidgets(new cloudwatch.GraphWidget({
49
+ // title: 'Errors',
50
+ // left: [this.lambdaFunction.metricErrors()],
51
+ // width: 24,
52
+ // }))
53
+ //
54
+ // this.dashboard.addWidgets(new cloudwatch.GraphWidget({
55
+ // title: 'Duration',
56
+ // left: [this.lambdaFunction.metricDuration()],
57
+ // width: 24,
58
+ // }))
59
+ //
60
+ // this.dashboard.addWidgets(new cloudwatch.GraphWidget({
61
+ // title: 'Throttles',
62
+ // left: [this.lambdaFunction.metricThrottles()],
63
+ // width: 24,
64
+ // }))
65
+ //
66
+ // // Create Widget to show last 20 Log Entries
67
+ // this.dashboard.addWidgets(new cloudwatch.LogQueryWidget({
68
+ // logGroupNames: [this.lambdaFunction.logGroup.logGroupName],
69
+ // queryLines: [
70
+ // 'fields @timestamp, @message',
71
+ // 'sort @timestamp desc',
72
+ // 'limit 20',
73
+ // ],
74
+ // width: 24,
75
+ // }))
76
+ //
77
+ // // Generate Output
78
+ // const cloudwatchDashboardURL = `https://${Aws.REGION}.console.aws.amazon.com/cloudwatch/home?region=${Aws.REGION}#dashboards:name=${dashboardName}`
79
+ //
80
+ // new Output(scope, 'DashboardOutput', {
81
+ // value: cloudwatchDashboardURL,
82
+ // description: 'The CloudWatch Dashboard URL',
83
+ // exportName: 'StacksDashboardURL',
84
+ // })
85
+ // }
86
+ // }
package/src/cloud/docs.ts CHANGED
@@ -29,7 +29,7 @@ export class DocsStack {
29
29
  runtime: lambda.Runtime.NODEJS_18_X,
30
30
  handler: 'dist/origin-request.handler',
31
31
  code: lambda.Code.fromAsset(p.corePath('cloud/dist.zip'), {
32
- assetHash: originRequestFunctionHash,
32
+ assetHash: originRequestFunctionHash(),
33
33
  assetHashType: AssetHashType.CUSTOM,
34
34
  }),
35
35
  })
@@ -24,39 +24,39 @@ export class QueueStack {
24
24
 
25
25
  async init() {
26
26
  const jobsDir = path.jobsPath()
27
+ const actionsDir = path.appPath('Actions')
27
28
 
28
- try {
29
- const jobFiles = await fs.readdir(jobsDir)
30
- const actionFiles = await fs.readdir(actionsDir)
31
- const jobs = []
29
+ const jobFiles = await fs.readdir(jobsDir)
30
+ const actionFiles = await fs.readdir(actionsDir)
31
+ const jobs = []
32
32
 
33
- // then, need to loop through all app/Jobs/*.ts and create a rule for each, potentially overwriting the Schedule.ts jobs
34
- for (const file of jobFiles) {
35
- if (!file.endsWith('.ts'))
36
- continue
33
+ // then, need to loop through all app/Jobs/*.ts and create a rule for each, potentially overwriting the Schedule.ts jobs
34
+ for (const file of jobFiles) {
35
+ if (!file.endsWith('.ts'))
36
+ continue
37
37
 
38
- const filePath = path.jobsPath(file)
38
+ const jobPath = path.jobsPath(file)
39
39
 
40
- // Await the loading of the job module
41
- jobs.push(await this.loadModule(filePath))
42
- }
43
-
44
- for (const file of actionFiles) {
45
- if (!file.endsWith('.ts'))
46
- continue
40
+ // Await the loading of the job module
41
+ const job = await this.loadModule(jobPath)
42
+ this.createQueueRule(job, file)
43
+ jobs.push(job)
44
+ }
47
45
 
48
- const filePath = path.actionsPath(file)
46
+ for (const file of actionFiles) {
47
+ if (!file.endsWith('.ts'))
48
+ continue
49
49
 
50
- // Await the loading of the job module
51
- jobs.push(await this.loadModule(filePath))
52
- }
50
+ const actionPath = path.appPath(`Actions/${file}`)
53
51
 
54
- for (const job of jobs)
55
- await this.createQueueRule(job)
56
- }
57
- catch (err) {
58
- console.error('Error reading the jobs directory:', err)
52
+ // Await the loading of the job module
53
+ const action = await this.loadModule(actionPath)
54
+ this.createQueueRule(action, file)
55
+ jobs.push(action)
59
56
  }
57
+
58
+ // for (const job of jobs)
59
+ // await this.createQueueRule(job, file)
60
60
  }
61
61
 
62
62
  // Helper function to convert a rate string to a cron object for AWS Schedule
@@ -78,12 +78,13 @@ export class QueueStack {
78
78
  return jobModule
79
79
  }
80
80
 
81
- createQueueRule(job: any) {
82
- // Now you can safely access job.default.rate
83
- const rate = job.default?.rate
81
+ // TODO: narrow any type -> jobs & actions are allowed
82
+ createQueueRule(module: { default: any }, file: string) {
83
+ // Now you can safely access module.default.rate
84
+ const rate = module.default?.rate
84
85
 
85
86
  // if no rate or job is disabled, no need to schedule, skip
86
- if (!rate || job.default?.enabled === false)
87
+ if (!rate || module.default?.enabled === false)
87
88
  return
88
89
 
89
90
  // Convert the rate to a Schedule object
@@ -115,26 +116,26 @@ export class QueueStack {
115
116
  },
116
117
  {
117
118
  name: 'JOB_BACKOFF_FACTOR',
118
- value: jobModule.default?.backoffFactor,
119
+ value: module.default?.backoffFactor,
119
120
  },
120
121
  {
121
122
  name: 'JOB_RETRIES',
122
- value: jobModule.default?.tries,
123
+ value: module.default?.tries,
123
124
  },
124
125
  {
125
126
  name: 'JOB_INITIAL_DELAY',
126
- value: jobModule.default?.initialDelay,
127
+ value: module.default?.initialDelay,
127
128
  },
128
129
  {
129
130
  name: 'JOB_JITTER',
130
- value: jobModule.default?.jitter,
131
+ value: module.default?.jitter,
131
132
  },
132
133
  ],
133
134
  },
134
135
  ],
135
136
 
136
137
  retryAttempts: 1, // we utilize a custom retry mechanism in the job itself
137
- // retryAttempts: jobModule.default.tries || 3,
138
+ // retryAttempts: module.default.tries || 3,
138
139
 
139
140
  subnetSelection: {
140
141
  subnetType: ec2.SubnetType.PUBLIC, // SubnetType.PRIVATE_WITH_EGRESS
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stacks-router-layer",
3
- "version": "0.58.58",
3
+ "version": "0.58.60",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "MIT",
@@ -10,6 +10,6 @@
10
10
  "test": "echo \"Error: no test specified\" && exit 1"
11
11
  },
12
12
  "dependencies": {
13
- "@stacksjs/router": "^0.58.57"
13
+ "@stacksjs/router": "^0.58.59"
14
14
  }
15
15
  }