@dotcom-tool-kit/circleci-npm 3.0.0 → 3.0.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 +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dotcom-tool-kit/circleci-npm",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.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": "^2.
|
|
14
|
-
"@dotcom-tool-kit/circleci": "^3.0.
|
|
15
|
-
"@dotcom-tool-kit/npm": "^2.0.
|
|
13
|
+
"@dotcom-tool-kit/types": "^2.8.0",
|
|
14
|
+
"@dotcom-tool-kit/circleci": "^3.0.2",
|
|
15
|
+
"@dotcom-tool-kit/npm": "^2.0.13",
|
|
16
16
|
"tslib": "^2.3.1"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
package/readme.md
CHANGED
|
@@ -4,6 +4,8 @@ This plugin is for managing the `publish:tag` hook that is run from circleci to
|
|
|
4
4
|
|
|
5
5
|
The tool-kit/publish job is triggered in your circleci pipeline once you do a release with a tag matching the semver format. 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. If your tag is a release version, i.e. `v1.6.0`, then the publish job will tag your build as the latest version.
|
|
6
6
|
|
|
7
|
+
This plugin will be installed as a dependency of the [component](https://github.com/Financial-Times/dotcom-tool-kit/tree/main/plugins/component) plugin so you do not need to install it separately if you are using either of those plugins.
|
|
8
|
+
|
|
7
9
|
## Installation
|
|
8
10
|
|
|
9
11
|
Install `@dotcom-tool-kit/circleci-npm` as a `devDependency` in your app:
|