@1mill/cloudevents 4.6.2 → 4.6.3
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/CHANGELOG.md +5 -1
- package/README.md +4 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -157,7 +157,7 @@ const cloudevent = new Cloudevent({
|
|
|
157
157
|
|
|
158
158
|
## Release new version
|
|
159
159
|
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
160
|
+
1. Create `.env` and add NPM_TOKEN=...
|
|
161
|
+
2. Run `docker compose run node`
|
|
162
|
+
3. In the container, run `npm version <major|minor|patch>`
|
|
163
|
+
4. In the container, run `npm run deploy`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@1mill/cloudevents",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.3",
|
|
4
4
|
"description": "Node cloudevents specification and helper",
|
|
5
5
|
"jsnext:main": "dist/index.module.js",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"build": "rm -rf ./dist && npm run build:browser && npm run build:node",
|
|
18
18
|
"build:browser": "microbundle --format modern,umd --external none",
|
|
19
19
|
"build:node": "microbundle --format cjs,esm",
|
|
20
|
-
"deploy": "npm run build && npm publish
|
|
20
|
+
"deploy": "npm run build && npm publish",
|
|
21
21
|
"dev": "microbundle watch",
|
|
22
22
|
"test:unit": "mocha \"src/**/*.test.js\" --recursive"
|
|
23
23
|
},
|