Skip to content

Commit b84d59d

Browse files
SilanHehsilan
andauthored
chore: Change package private status to false and bumping package versions to 1.0.0 (#326)
*Issue #, if available:* *Description of changes:* bumping all the versions to 1.0.0 and changing privacy status to false to allow publishing to NPM. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. --------- Co-authored-by: hsilan <hsilan@amazon.com>
1 parent c210e21 commit b84d59d

File tree

5 files changed

+15
-19
lines changed

5 files changed

+15
-19
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
## My Project
1+
# AWS Durable Execution SDKs for JavaScript
22

3-
TODO: Fill this README out!
3+
This repository contains the code for the following 3 packages published to NPM:
44

5-
Be sure to:
5+
* [@aws/durable-execution-sdk-js](https://github.com/aws/aws-durable-execution-sdk-js/tree/main/packages/aws-durable-execution-sdk-js)
6+
* [@aws/durable-execution-sdk-js-testing](https://github.com/aws/aws-durable-execution-sdk-js/tree/main/packages/aws-durable-execution-sdk-js-testing)
7+
* [@aws/durable-execution-sdk-js-eslint-plugin](https://github.com/aws/aws-durable-execution-sdk-js/tree/main/packages/aws-durable-execution-sdk-js-eslint-plugin)
68

7-
- Change the title in this README
8-
- Edit your repository description on GitHub
9+
The repository also contains example durable execution located [here](https://github.com/aws/aws-durable-execution-sdk-js/tree/main/packages/aws-durable-execution-sdk-js-examples).
910

1011
## Security
1112

packages/aws-durable-execution-sdk-js-eslint-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@
3434
"dist/**/*",
3535
"README.md"
3636
],
37-
"private": true
37+
"private": false
3838
}

packages/aws-durable-execution-sdk-js-examples/README.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
1-
## My Project
1+
# AWS Durable Execution SDK - TypeScript /JavaScript Examples
22

3-
TODO: Fill this README out!
3+
This package contains example Lambda functions that demonstrate how to use the AWS Durable Execution SDK for TypeScript. Each example is a standalone function you can deploy and test.
44

5-
Be sure to:
5+
Examples include basic patterns like **hello-world** and **steps**, advanced operations like **parallel** and **map**, and specialized scenarios like **wait-for-callback** and **error-handling**, among others.
66

7-
- Change the title in this README
8-
- Edit your repository description on GitHub
9-
10-
## Security
11-
12-
See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information.
7+
Browse the `src/examples/` directory to see all available examples.
138

149
## License
1510

packages/aws-durable-execution-sdk-js-testing/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws/durable-execution-sdk-js-testing",
33
"description": "Durable Executions Testing SDK for TypeScript",
4-
"version": "0.1.0",
4+
"version": "1.0.0",
55
"license": "Apache-2.0",
66
"repository": "ssh:github.com/aws/aws-durable-execution-sdk-js/tree/development/packages/aws-durable-execution-sdk-js-testing",
77
"homepage": "https://github.com/aws/aws-durable-execution-sdk-js/tree/development/packages/aws-durable-execution-sdk-js-testing",
@@ -62,5 +62,5 @@
6262
"peerDependencies": {
6363
"@aws/durable-execution-sdk-js": "*"
6464
},
65-
"private": true
65+
"private": false
6666
}

packages/aws-durable-execution-sdk-js/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@aws/durable-execution-sdk-js",
33
"description": "Durable Executions Language SDK for TypeScript",
44
"license": "Apache-2.0",
5-
"version": "0.1.0",
5+
"version": "1.0.0",
66
"repository": "ssh:github.com/aws/aws-durable-execution-sdk-js/tree/development/packages/aws-durable-execution-sdk-js",
77
"homepage": "https://github.com/aws/aws-durable-execution-sdk-js/tree/development/packages/aws-durable-execution-sdk-js",
88
"engines": {
@@ -61,5 +61,5 @@
6161
"dependencies": {
6262
"@aws-sdk/client-lambda": "*"
6363
},
64-
"private": true
64+
"private": false
6565
}

0 commit comments

Comments
 (0)