@relative-ci/core 5.3.0-beta.0 → 5.3.0-beta.1
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/README.md +10 -0
- package/lib/cjs/env/load.js +1 -1
- package/lib/esm/env/load.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -30,6 +30,16 @@ To get started, follow [RelativeCI Setup guide for CLI](https://relative-ci.com/
|
|
|
30
30
|
|
|
31
31
|
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).
|
|
32
32
|
|
|
33
|
+
#### [`@relative-ci/rollup-plugin`](https://github.com/relative-ci/agent/tree/master/packages/rollup-plugin)
|
|
34
|
+
|
|
35
|
+
[](https://www.npmjs.com/package/@relative-ci/rollup-plugin)
|
|
36
|
+
[](https://www.npmjs.com/package/@relative-ci/rollup-plugin)
|
|
37
|
+
[](https://socket.dev/npm/package/@relative-ci/rollup-plugin)
|
|
38
|
+
[](https://github.com/relative-ci/agent/actions/workflows/ci.yml)
|
|
39
|
+
[](https://github.com/relative-ci/agent/actions/workflows/codeql.yml)
|
|
40
|
+
|
|
41
|
+
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).
|
|
42
|
+
|
|
33
43
|
## Other agents
|
|
34
44
|
|
|
35
45
|
- [GitHub action](https://github.com/relative-ci/cli-action)
|
package/lib/cjs/env/load.js
CHANGED
|
@@ -24,7 +24,7 @@ async function loadEnv(args, config = {}, logger$1 = logger.logger) {
|
|
|
24
24
|
debug.debug('RELATIVE_CI env', maskObjectProperty.maskObjectProperties(agentEnv$1, ['key']));
|
|
25
25
|
const params = {
|
|
26
26
|
isCi: ciEnv$1.isCi,
|
|
27
|
-
agentVersion: "5.3.0-beta.
|
|
27
|
+
agentVersion: "5.3.0-beta.1",
|
|
28
28
|
agentType: args.agentType,
|
|
29
29
|
key: agentEnv$1.key,
|
|
30
30
|
endpoint: agentEnv$1.endpoint || constants.DEFAULT_ENDPOINT,
|
package/lib/esm/env/load.js
CHANGED
|
@@ -22,7 +22,7 @@ async function loadEnv(args, config = {}, logger$1 = logger) {
|
|
|
22
22
|
debug('RELATIVE_CI env', maskObjectProperties(agentEnv, ['key']));
|
|
23
23
|
const params = {
|
|
24
24
|
isCi: ciEnv.isCi,
|
|
25
|
-
agentVersion: "5.3.0-beta.
|
|
25
|
+
agentVersion: "5.3.0-beta.1",
|
|
26
26
|
agentType: args.agentType,
|
|
27
27
|
key: agentEnv.key,
|
|
28
28
|
endpoint: agentEnv.endpoint || DEFAULT_ENDPOINT,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@relative-ci/core",
|
|
3
|
-
"version": "5.3.0-beta.
|
|
3
|
+
"version": "5.3.0-beta.1",
|
|
4
4
|
"description": "RelativeCI agent core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -98,5 +98,5 @@
|
|
|
98
98
|
"fs-extra": "11.3.3",
|
|
99
99
|
"lodash": "4.17.23"
|
|
100
100
|
},
|
|
101
|
-
"gitHead": "
|
|
101
|
+
"gitHead": "aedae08437f56a9d69981bea0a5c95f2994be6fb"
|
|
102
102
|
}
|