@relative-ci/webpack-plugin 5.3.0-rc.2 → 5.3.0-rc.7

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 +3 -4
  2. package/package.json +20 -5
package/README.md CHANGED
@@ -2,11 +2,11 @@
2
2
  <img alt="RelativeCI" src="https://raw.githubusercontent.com/relative-ci/agent/master/assets/relative-ci--logo.png" width="96" />
3
3
  </a>
4
4
 
5
- # RelativeCI webpack-plugin agent
5
+ # RelativeCI webpack/rspack plugin agent
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 for webpack-plugin](https://relative-ci.com/documentation/setup?utm_source=github&utm_medium=agent).
9
+ 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).
10
10
 
11
11
  [![npm](https://img.shields.io/npm/v/@relative-ci/webpack-plugin.svg)](https://www.npmjs.com/package/@relative-ci/webpack-plugin)
12
12
  [![node version](https://img.shields.io/node/v/@relative-ci/webpack-plugin.svg)](https://www.npmjs.com/package/@relative-ci/webpack-plugin)
@@ -38,5 +38,4 @@ To get started, follow [RelativeCI Setup guide for rollup-plugin](https://relati
38
38
 
39
39
  ## Other agents
40
40
 
41
- - [GitHub action](https://github.com/relative-ci/cli-action)
42
- - [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,10 +1,13 @@
1
1
  {
2
2
  "name": "@relative-ci/webpack-plugin",
3
- "version": "5.3.0-rc.2",
3
+ "version": "5.3.0-rc.7",
4
4
  "description": "Webpack plugin that sends bundle stats and CI build information to RelativeCI",
5
5
  "keywords": [
6
+ "relative-ci",
6
7
  "webpack",
8
+ "webpack-plugin",
7
9
  "rspack",
10
+ "rspack-plugin",
8
11
  "bundle-size",
9
12
  "bundle-analyzer",
10
13
  "bundle-stats",
@@ -15,7 +18,11 @@
15
18
  "chunks",
16
19
  "modules"
17
20
  ],
18
- "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/webpack-plugin"
25
+ },
19
26
  "bugs": {
20
27
  "url": "https://github.com/relative-ci/agent/issues"
21
28
  },
@@ -32,6 +39,14 @@
32
39
  "main": "./lib/cjs/index.js",
33
40
  "module": "./lib/esm/index.js",
34
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,
35
50
  "scripts": {
36
51
  "build": "npm run clean && tsc && rollup -c && npm run build-type",
37
52
  "build-type": "echo '{\"type\":\"commonjs\"}' > lib/cjs/package.json && echo '{\"type\":\"module\"}' > lib/esm/package.json",
@@ -45,7 +60,7 @@
45
60
  "@rollup/plugin-node-resolve": "16.0.3",
46
61
  "@rollup/plugin-replace": "6.0.3",
47
62
  "@rollup/plugin-typescript": "12.3.0",
48
- "@tsconfig/node18": "^18.2.4",
63
+ "@tsconfig/node18": "18.2.6",
49
64
  "@types/lodash": "4.17.24",
50
65
  "memory-fs": "0.5.0",
51
66
  "rimraf": "6.1.3",
@@ -56,7 +71,7 @@
56
71
  "webpack": "5.105.4"
57
72
  },
58
73
  "dependencies": {
59
- "@relative-ci/core": "5.3.0-rc.2",
74
+ "@relative-ci/core": "5.3.0-rc.7",
60
75
  "lodash": "4.17.23"
61
76
  },
62
77
  "peerDependencies": {
@@ -71,5 +86,5 @@
71
86
  "optional": true
72
87
  }
73
88
  },
74
- "gitHead": "e09a31f71c0c4cadb0f67a1af8b85d3abd5507ca"
89
+ "gitHead": "c1c0495b628579bc0012c4e1e22e7ca4219ac60f"
75
90
  }