@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 CHANGED
@@ -1,6 +1,10 @@
1
1
  # Changelog for @1mill/cloudevents
2
2
 
3
- ## 4.7.1
3
+ ## 4.6.3
4
+
5
+ * Update `README` to better reflect deployment process
6
+
7
+ ## 4.6.2
4
8
 
5
9
  * Update `nanoid` from `^3.3.4` to `^3.3.7`.
6
10
  * Move `sinon-chai` to `devDependencies`.
package/README.md CHANGED
@@ -157,7 +157,7 @@ const cloudevent = new Cloudevent({
157
157
 
158
158
  ## Release new version
159
159
 
160
- ```bash
161
- npm version <major|minor|patch>
162
- npm run depoy
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.2",
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 --access public",
20
+ "deploy": "npm run build && npm publish",
21
21
  "dev": "microbundle watch",
22
22
  "test:unit": "mocha \"src/**/*.test.js\" --recursive"
23
23
  },