@stacksjs/cloud 0.58.51 → 0.58.53
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 +167 -806
- package/package.json +29 -30
- package/src/cloud/aws-sdk-layer/nodejs/package-lock.json +6 -6
- package/src/cloud/aws-sdk-layer/nodejs/package.json +2 -2
- package/src/cloud/cdn.ts +59 -6
- package/src/cloud/compute.ts +29 -19
- package/src/cloud/dns.ts +8 -0
- package/src/cloud/index.ts +8 -2
- package/src/cloud/queue.ts +46 -0
- package/src/cloud/router-layer/nodejs/package.json +1 -1
- package/src/cloud/security.ts +1 -1
- package/src/helpers.ts +13 -1
- package/src/cloud/package/README.md +0 -59
- package/src/cloud/package/package.json +0 -63
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
# Stacks Router
|
|
2
|
-
|
|
3
|
-
This package contains the Stacks Router.
|
|
4
|
-
|
|
5
|
-
## ☘️ Features
|
|
6
|
-
|
|
7
|
-
wip
|
|
8
|
-
|
|
9
|
-
- ⚡️
|
|
10
|
-
|
|
11
|
-
wip
|
|
12
|
-
|
|
13
|
-
## 🤖 Usage
|
|
14
|
-
|
|
15
|
-
wip
|
|
16
|
-
|
|
17
|
-
```bash
|
|
18
|
-
bun install -d @stacksjs/actions
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
Now, you can use it in your project:
|
|
22
|
-
|
|
23
|
-
```js
|
|
24
|
-
import * as router from '@stacksjs/router'
|
|
25
|
-
|
|
26
|
-
// wip
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
Learn more in the docs.
|
|
30
|
-
|
|
31
|
-
## 🧪 Testing
|
|
32
|
-
|
|
33
|
-
```bash
|
|
34
|
-
bun test
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
## 📈 Changelog
|
|
38
|
-
|
|
39
|
-
Please see our [releases](https://github.com/stacksjs/stacks/releases) page for more information on what has changed recently.
|
|
40
|
-
|
|
41
|
-
## 🚜 Contributing
|
|
42
|
-
|
|
43
|
-
Please review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
|
|
44
|
-
|
|
45
|
-
## 🏝 Community
|
|
46
|
-
|
|
47
|
-
For help, discussion about best practices, or any other conversation that would benefit from being searchable:
|
|
48
|
-
|
|
49
|
-
[Discussions on GitHub](https://github.com/stacksjs/stacks/discussions)
|
|
50
|
-
|
|
51
|
-
For casual chit-chat with others using this package:
|
|
52
|
-
|
|
53
|
-
[Join the Stacks Discord Server](https://discord.gg/stacksjs)
|
|
54
|
-
|
|
55
|
-
## 📄 License
|
|
56
|
-
|
|
57
|
-
The MIT License (MIT). Please see [LICENSE](https://github.com/stacksjs/stacks/tree/main/LICENSE.md) for more information.
|
|
58
|
-
|
|
59
|
-
Made with 💙
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@stacksjs/router",
|
|
3
|
-
"type": "module",
|
|
4
|
-
"version": "0.58.51",
|
|
5
|
-
"description": "The Stacks framework router.",
|
|
6
|
-
"author": "Chris Breuer",
|
|
7
|
-
"license": "MIT",
|
|
8
|
-
"funding": "https://github.com/sponsors/chrisbbreuer",
|
|
9
|
-
"homepage": "https://github.com/stacksjs/stacks/tree/main/storage/framework/core/router#readme",
|
|
10
|
-
"repository": {
|
|
11
|
-
"type": "git",
|
|
12
|
-
"url": "git+https://github.com/stacksjs/stacks.git",
|
|
13
|
-
"directory": "./storage/framework/core/router"
|
|
14
|
-
},
|
|
15
|
-
"bugs": {
|
|
16
|
-
"url": "https://github.com/stacksjs/stacks/issues"
|
|
17
|
-
},
|
|
18
|
-
"keywords": [
|
|
19
|
-
"router",
|
|
20
|
-
"stacks",
|
|
21
|
-
"framework",
|
|
22
|
-
"typescript",
|
|
23
|
-
"javascript"
|
|
24
|
-
],
|
|
25
|
-
"exports": {
|
|
26
|
-
".": {
|
|
27
|
-
"bun": "./src/index.ts",
|
|
28
|
-
"import": "./dist/index.js"
|
|
29
|
-
},
|
|
30
|
-
"./*": {
|
|
31
|
-
"bun": "./src/*",
|
|
32
|
-
"import": "./dist/*"
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
"module": "dist/index.js",
|
|
36
|
-
"types": "dist/index.d.ts",
|
|
37
|
-
"contributors": [
|
|
38
|
-
"Chris Breuer <chris@stacksjs.org>"
|
|
39
|
-
],
|
|
40
|
-
"files": [
|
|
41
|
-
"README.md",
|
|
42
|
-
"dist",
|
|
43
|
-
"src"
|
|
44
|
-
],
|
|
45
|
-
"scripts": {
|
|
46
|
-
"build": "bun --bun build.ts",
|
|
47
|
-
"typecheck": "bun --bun tsc --noEmit",
|
|
48
|
-
"prepublishOnly": "bun --bun run build"
|
|
49
|
-
},
|
|
50
|
-
"peerDependencies": {
|
|
51
|
-
"@stacksjs/config": "latest",
|
|
52
|
-
"unplugin-vue-router": "^0.7.0",
|
|
53
|
-
"vue-router": "^4.2.5"
|
|
54
|
-
},
|
|
55
|
-
"dependencies": {
|
|
56
|
-
"@stacksjs/config": "latest",
|
|
57
|
-
"unplugin-vue-router": "^0.7.0",
|
|
58
|
-
"vue-router": "^4.2.5"
|
|
59
|
-
},
|
|
60
|
-
"devDependencies": {
|
|
61
|
-
"@stacksjs/development": "latest"
|
|
62
|
-
}
|
|
63
|
-
}
|