@dotcom-tool-kit/circleci-npm 1.7.0 → 1.8.2
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 +4 -4
- package/readme.md +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dotcom-tool-kit/circleci-npm",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib",
|
|
6
6
|
"scripts": {
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"author": "FT.com Platforms Team <platforms-team.customer-products@ft.com>",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@dotcom-tool-kit/types": "^1.
|
|
14
|
-
"@dotcom-tool-kit/circleci": "^1.
|
|
15
|
-
"@dotcom-tool-kit/npm": "^1.
|
|
13
|
+
"@dotcom-tool-kit/types": "^1.8.2",
|
|
14
|
+
"@dotcom-tool-kit/circleci": "^1.8.2",
|
|
15
|
+
"@dotcom-tool-kit/npm": "^1.8.2"
|
|
16
16
|
},
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
package/readme.md
CHANGED
|
@@ -39,7 +39,7 @@ If you don't have the automated comment in your `config.yml` and therefore choos
|
|
|
39
39
|
only: /^v\d+\.\d+\.\d+(-.+)?/
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
-
The tool-kit/publish job is triggered in your circleci pipeline
|
|
42
|
+
The tool-kit/publish job is triggered in your circleci pipeline once you do a release with a tag matching the semver format, e.g. `v1.6.0-beta.1`, `v1.6.0`. If your tag is a beta version, i.e. `v1.6.0-beta.1`, then the publish job will tag your build as a prerelease version. But if your tag is a release version, i.e. `v1.6.0`, then the publish job will tag your build as the latest version.
|
|
43
43
|
|
|
44
44
|
## Hooks
|
|
45
45
|
|