Skip to content

Commit 6588231

Browse files
chore: update to 3.844.0
1 parent 57e7849 commit 6588231

File tree

7 files changed

+21
-20
lines changed

7 files changed

+21
-20
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ following additional notes.
99
## Questions
1010

1111
The GitHub issue tracker is for *bug reports* and *feature requests*. Please do
12-
not use it to ask questions about how to use @aws-sdk/{repoName}. These questions should
12+
not use it to ask questions about how to use @aws-sdk/client-route53resolver. These questions should
1313
instead be directed to [Stack Overflow](https://stackoverflow.com/). Make sure
1414
that your question is tagged with the `javascript & api & aws-sdk` tag when asking it on
1515
Stack Overflow, to ensure that it is answered promptly and accurately.

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 🟡 AWS SDK for JavaScript v3 – Universal CDN Package
22

3-
This is a browser-ready distribution of [`@aws-sdk/{repoName}`](https://github.com/aws/aws-sdk-js-v3) modules from AWS SDK for JavaScript v3. It is automatically built and published to a CDN, so developers can use AWS SDKs directly in the browser with zero bundling.
3+
This is a browser-ready distribution of [`@aws-sdk/client-route53resolver`](https://github.com/aws/aws-sdk-js-v3) modules from AWS SDK for JavaScript v3. It is automatically built and published to a CDN, so developers can use AWS SDKs directly in the browser with zero bundling.
44

55
> ⚡️ No build step needed. Just import from a URL and use immediately.
66
@@ -14,7 +14,7 @@ Use directly in the browser via [jsDelivr](https://www.jsdelivr.com/):
1414

1515
```html
1616
<script type="module">
17-
import { } from "https://cdn.jsdelivr.net/gh/aws-sdk/{repoName}/index.min.mjs";
17+
import { } from "https://cdn.jsdelivr.net/gh/aws-sdk/client-route53resolver/index.min.mjs";
1818
// your logic here
1919
</script>
2020
```
@@ -23,7 +23,7 @@ Use directly in the browser via [jsDelivr](https://www.jsdelivr.com/):
2323

2424
```html
2525
<script type="module">
26-
import { S3Client } from "https://cdn.jsdelivr.net/gh/aws-sdk/client-s3@{repoVersion}/index.min.mjs";
26+
import { S3Client } from "https://cdn.jsdelivr.net/gh/aws-sdk/client-s3@3.844.0/index.min.mjs";
2727
2828
const client = new S3Client({ region: "us-east-1" });
2929
</script>
@@ -42,7 +42,7 @@ Replace `client-s3` with any other AWS SDK v3 client like:
4242

4343
You can request any official [`@aws-sdk/client-*`](https://github.com/aws/aws-sdk-js-v3/tree/main/clients) module from npm.
4444

45-
If a package you want isn’t available yet, [create an issue](https://github.com/aws-sdk/{repoName}/issues/)
45+
If a package you want isn’t available yet, [create an issue](https://github.com/aws-sdk/client-route53resolver/issues/)
4646

4747
---
4848

@@ -68,10 +68,10 @@ Examples:
6868

6969
```js
7070
// Latest
71-
https://cdn.jsdelivr.net/gh/aws-sdk/{repoName}/index.min.mjs
71+
https://cdn.jsdelivr.net/gh/aws-sdk/client-route53resolver/index.min.mjs
7272

7373
// Specific
74-
https://cdn.jsdelivr.net/gh/aws-sdk/{repoName}@{repoVersion}/index.min.mjs
74+
https://cdn.jsdelivr.net/gh/aws-sdk/[email protected]/index.min.mjs
7575
```
7676

7777
---
@@ -80,14 +80,14 @@ https://cdn.jsdelivr.net/gh/aws-sdk/{repoName}@{repoVersion}/index.min.mjs
8080

8181
Using external scripts from a CDN in production requires care. To lock versions and ensure consistency:
8282

83-
✅ Use fixed versions (`@{repoVersion}`)
83+
✅ Use fixed versions (`@3.844.0`)
8484
❌ Avoid always pointing to `latest` in production.
8585

8686
---
8787

8888
## 🤝 Contributing
8989

90-
To request support for a new AWS SDK v3 browder package, [open an issue](https://github.com/aws-sdk/{repoName}/issues).
90+
To request support for a new AWS SDK v3 browder package, [open an issue](https://github.com/aws-sdk/client-route53resolver/issues).
9191

9292
---
9393

entry.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "@aws-sdk/{repoName}";
1+
export * from "@aws-sdk/client-route53resolver";

examples/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<script type="importmap">
1111
{
1212
"imports": {
13-
"@aws-sdk/{repoName}": "https://cdn.jsdelivr.net/gh/aws-sdk/{repoName}@{repoVersion}/index.min.mjs"
13+
"@aws-sdk/client-route53resolver": "https://cdn.jsdelivr.net/gh/aws-sdk/[email protected]/index.min.mjs"
1414
}
1515
}
1616
</script>

examples/main.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import {ClientCommand } from "@aws-sdk/{repoName}";
1+
import {ClientCommand } from "@aws-sdk/client-route53resolver";
22

33
// Refer "https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/" for documentation of this command

index.min.mjs

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"name": "{repoName}",
3-
"description": "AWS SDK Javascript V3 - {repoName} for Browser",
4-
"version": "{repoVersion}",
2+
"name": "client-route53resolver",
3+
"description": "AWS SDK Javascript V3 - client-route53resolver for Browser",
4+
"version": "3.844.0",
55
"scripts": {
66
"test": "echo \"Error: no test specified\" && exit 1",
77
"build": "webpack"
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "https://github.com/aws-sdk/{repoName}.git"
11+
"url": "https://github.com/aws-sdk/client-route53resolver.git"
1212
},
1313
"license": "Apache-2.0",
1414
"keywords": [
1515
"aws-sdk",
16-
"{repoName}",
16+
"client-route53resolver",
1717
"browser",
1818
"s3",
1919
"module",
@@ -29,9 +29,9 @@
2929
"url": "https://github.com/sponsors/suryavaddiraju"
3030
},
3131
"bugs": {
32-
"url": "https://github.com/aws-sdk/{repoName}/issues"
32+
"url": "https://github.com/aws-sdk/client-route53resolver/issues"
3333
},
34-
"homepage": "https://github.com/aws-sdk/{repoName}",
34+
"homepage": "https://github.com/aws-sdk/client-route53resolver",
3535
"files": [
3636
".github/CODEOWNERS",
3737
".github/CODE_OF_CONDUCT.md",
@@ -52,7 +52,7 @@
5252
"index.min.mjs"
5353
],
5454
"dependencies": {
55-
"@aws-sdk/{repoName}":"{repoVersion}"
55+
"@aws-sdk/client-route53resolver": "^3.844.0"
5656
},
5757
"devDependencies": {
5858
"webpack": "^5.100.1",

0 commit comments

Comments
 (0)