@biggive/components 202301271119.0.0 → 202301311640.0.0
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/package.json +1 -1
- package/readme.md +10 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@biggive/components",
|
|
3
3
|
"_comment": "Version number below is automatically replaced during CircleCI build.",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "202301311640.0.0",
|
|
5
5
|
"description": "Big Give Components",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
7
7
|
"module": "dist/index.js",
|
package/readme.md
CHANGED
|
@@ -149,11 +149,17 @@ renders in the deployed environment, where these work due to:
|
|
|
149
149
|
npm add_user
|
|
150
150
|
```
|
|
151
151
|
|
|
152
|
-
###
|
|
152
|
+
### Versions and publishing
|
|
153
153
|
|
|
154
|
-
|
|
154
|
+
CircleCI will now create a new version, build and publish it to npm
|
|
155
|
+
on *every* commit to `main`. Version numbers are generated such that every release
|
|
156
|
+
is a new "major" release, so dependent packages must use version `"*"` to automatically
|
|
157
|
+
receive new versions on `npm update`.
|
|
155
158
|
|
|
156
|
-
|
|
159
|
+
#### Manual updates
|
|
160
|
+
|
|
161
|
+
It is no longer expected to manually update versions, but if the automatic process
|
|
162
|
+
is ever broken, the steps used before Jan '23 were:
|
|
157
163
|
|
|
158
164
|
* Update the root `package.json`'s `version` field.
|
|
159
165
|
* `npm install` to update `package-lock.json` to match.
|
|
@@ -161,7 +167,7 @@ Versioning is manual currently. To prepare a release for publishing:
|
|
|
161
167
|
* `git tag v0.0.1` (replace with your new version)
|
|
162
168
|
* `git push --tags`
|
|
163
169
|
|
|
164
|
-
You can also do
|
|
170
|
+
You can also do the npm publish manually if necessary:
|
|
165
171
|
|
|
166
172
|
```bash
|
|
167
173
|
npm publish --access=public
|