@relative-ci/cli 5.3.0-rc.2 → 5.3.0-rc.6

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.
Files changed (2) hide show
  1. package/README.md +5 -7
  2. package/package.json +18 -5
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  > Send bundle stats and CI build information to [RelativeCI](https://relative-ci.com?utm_source=github&utm_medium=agent).
8
8
 
9
- To get started, follow [RelativeCI Setup guide CLI](https://relative-ci.com/documentation/setup/agent/cli?utm_source=github&utm_medium=agent).
9
+ To get started, follow [RelativeCI Setup guide for CLI](https://relative-ci.com/documentation/setup/agent/cli?utm_source=github&utm_medium=agent).
10
10
 
11
11
  [![npm](https://img.shields.io/npm/v/@relative-ci/cli.svg)](https://www.npmjs.com/package/@relative-ci/cli)
12
12
  [![node version](https://img.shields.io/node/v/@relative-ci/cli.svg)](https://www.npmjs.com/package/@relative-ci/cli)
@@ -14,9 +14,9 @@ To get started, follow [RelativeCI Setup guide CLI](https://relative-ci.com/docu
14
14
  [![ci](https://github.com/relative-ci/agent/actions/workflows/ci.yml/badge.svg)](https://github.com/relative-ci/agent/actions/workflows/ci.yml)
15
15
  [![CodeQL](https://github.com/relative-ci/agent/actions/workflows/codeql.yml/badge.svg)](https://github.com/relative-ci/agent/actions/workflows/codeql.yml)
16
16
 
17
- ### Other packages
17
+ ## Other packages
18
18
 
19
- #### [`@relative-ci/webpack-plugin`](https://github.com/relative-ci/agent/tree/master/packages/webpack-plugin)
19
+ ### [`@relative-ci/webpack-plugin`](https://github.com/relative-ci/agent/tree/master/packages/webpack-plugin)
20
20
 
21
21
  [![npm](https://img.shields.io/npm/v/@relative-ci/webpack-plugin.svg)](https://www.npmjs.com/package/@relative-ci/webpack-plugin)
22
22
  [![node version](https://img.shields.io/node/v/@relative-ci/webpack-plugin.svg)](https://www.npmjs.com/package/@relative-ci/webpack-plugin)
@@ -26,7 +26,7 @@ To get started, follow [RelativeCI Setup guide CLI](https://relative-ci.com/docu
26
26
 
27
27
  To get started, follow [RelativeCI Setup guide for webpack-plugin](https://relative-ci.com/documentation/setup/agent/webpack-plugin?utm_source=github&utm_medium=agent).
28
28
 
29
- #### [`@relative-ci/rollup-plugin`](https://github.com/relative-ci/agent/tree/master/packages/rollup-plugin)
29
+ ### [`@relative-ci/rollup-plugin`](https://github.com/relative-ci/agent/tree/master/packages/rollup-plugin)
30
30
 
31
31
  [![npm](https://img.shields.io/npm/v/@relative-ci/rollup-plugin.svg)](https://www.npmjs.com/package/@relative-ci/rollup-plugin)
32
32
  [![node version](https://img.shields.io/node/v/@relative-ci/rollup-plugin.svg)](https://www.npmjs.com/package/@relative-ci/rollup-plugin)
@@ -36,8 +36,6 @@ To get started, follow [RelativeCI Setup guide for webpack-plugin](https://relat
36
36
 
37
37
  To get started, follow [RelativeCI Setup guide for rollup-plugin](https://relative-ci.com/documentation/setup/agent/rollup-plugin?utm_source=github&utm_medium=agent).
38
38
 
39
-
40
39
  ## Other agents
41
40
 
42
- - [GitHub action](https://github.com/relative-ci/cli-action)
43
- - [CircleCI orbit (soon)](https://github.com/relative-ci/roadmap/issues/46)
41
+ - [GitHub action](https://github.com/relative-ci/cli-action)
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@relative-ci/cli",
3
- "version": "5.3.0-rc.2",
4
- "description": "Send bundle stats and CI build information to RelativeCI CLI",
3
+ "version": "5.3.0-rc.6",
4
+ "description": "CLI to send bundle stats and CI build information to RelativeCI",
5
5
  "keywords": [
6
+ "relative-ci",
6
7
  "webpack",
7
8
  "vitejs",
8
9
  "rspack",
@@ -17,7 +18,11 @@
17
18
  "chunks",
18
19
  "modules"
19
20
  ],
20
- "repository": "https://github.com/relative-ci/agent",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/relative-ci/agent.git",
24
+ "directory": "packages/cli"
25
+ },
21
26
  "bugs": {
22
27
  "url": "https://github.com/relative-ci/agent/issues"
23
28
  },
@@ -34,6 +39,14 @@
34
39
  "main": "./lib/cjs/index.js",
35
40
  "module": "./lib/esm/index.js",
36
41
  "types": "./lib/types/index.d.ts",
42
+ "exports": {
43
+ ".": {
44
+ "types": "./lib/types/index.d.ts",
45
+ "require": "./lib/cjs/index.js",
46
+ "import": "./lib/esm/index.js"
47
+ }
48
+ },
49
+ "sideEffects": false,
37
50
  "bin": {
38
51
  "relative-ci": "bin/index.js"
39
52
  },
@@ -59,10 +72,10 @@
59
72
  "vitest": "4.0.18"
60
73
  },
61
74
  "dependencies": {
62
- "@relative-ci/core": "5.3.0-rc.2",
75
+ "@relative-ci/core": "5.3.0-rc.6",
63
76
  "cosmiconfig": "9.0.1",
64
77
  "fs-extra": "11.3.4",
65
78
  "yargs": "17.7.2"
66
79
  },
67
- "gitHead": "e09a31f71c0c4cadb0f67a1af8b85d3abd5507ca"
80
+ "gitHead": "ea66bddab22732fb3eed11edd9bf8d1d4e0d2777"
68
81
  }