@dragon-syndicate/template-default-sdk 1.23.4 → 1.23.10
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/index.mjs +1 -0
- package/package.json +5 -4
- package/CHANGELOG.md +0 -5
- package/README.md +0 -33
package/index.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var e=class{myMethod(){}};export{e as MyClass};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dragon-syndicate/template-default-sdk",
|
|
3
3
|
"license": "UNLICENSED",
|
|
4
|
-
"version": "1.23.
|
|
4
|
+
"version": "1.23.10",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -40,8 +40,9 @@
|
|
|
40
40
|
"clean": "pnpm run /^clean:.*/",
|
|
41
41
|
"clean:node": "rm -rf dist node_modules",
|
|
42
42
|
"clean:infra": "cd .github/infra && rm -rf .terraform .terraform.lock.hcl tfplan **/*.zip",
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
43
|
+
"prerelease:generate-license-file": "generate-license-file --overwrite --input ./package.json --output ./dist/THIRD_PARTY_LICENSES.txt",
|
|
44
|
+
"prerelease:copy-package": "mkdir -p dist && cp -rf ./package.json ./dist/package.json",
|
|
45
|
+
"prerelease:copy-public": "mkdir -p dist && cp -rf ./public/ ./dist",
|
|
46
|
+
"prerelease": "pnpm run /^prerelease:.*/"
|
|
46
47
|
}
|
|
47
48
|
}
|
package/CHANGELOG.md
DELETED
package/README.md
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
# SDK
|
|
2
|
-
|
|
3
|
-
This is the public SDK for the project. This file is not the `README.md` file that is published to [npmjs](https://www.npmjs.com/). Update [public/README.md](public/README.md) to update the public information.
|
|
4
|
-
|
|
5
|
-
## (DELETE THIS SECTION) How to use this template
|
|
6
|
-
|
|
7
|
-
<!-- TODO: Add any how to instructions here -->
|
|
8
|
-
|
|
9
|
-
## Initial Setup
|
|
10
|
-
|
|
11
|
-
<!-- TODO: Add any initial setup instructions here -->
|
|
12
|
-
|
|
13
|
-
## Architecture
|
|
14
|
-
|
|
15
|
-
<!-- TODO: Add any architecture information here -->
|
|
16
|
-
|
|
17
|
-
## Release Process
|
|
18
|
-
|
|
19
|
-
- The package will build all its files to the root `dist` folder to be published to [npmjs](https://www.npmjs.com/)
|
|
20
|
-
- Semantic versioning and Changelog is implement via GitHub Actions
|
|
21
|
-
- Deployment is implemented via GitHub Actions
|
|
22
|
-
- Published Package only contains: - minified code - README.md - LICENSE.md - package.json (with private packages removed) - changelog
|
|
23
|
-
<!-- TODO: Add any release process information here -->
|
|
24
|
-
|
|
25
|
-
## Development
|
|
26
|
-
|
|
27
|
-
<!-- TODO: Add any development information here -->
|
|
28
|
-
|
|
29
|
-
## Additional Information
|
|
30
|
-
|
|
31
|
-
To locally test the release process you will need to run the command in the root directory `cd dist && npx semantic-release --dry-run`.
|
|
32
|
-
|
|
33
|
-
NOTE: This command will only work if you have already logged in to [npmjs](https://www.npmjs.com/) via the command `npm login`.
|