@relative-ci/core 5.0.0-alpha.2 → 5.0.0-alpha.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.
package/LICENSE ADDED
@@ -0,0 +1,9 @@
1
+ # The MIT License
2
+
3
+ Copyright 2018 Viorel Cojocaru, contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,36 @@
1
+ <a href="https://relative-ci.com">
2
+ <img alt="RelativeCI" src="https://raw.githubusercontent.com/relative-ci/agent/master/assets/relative-ci--logo.png" width="96" />
3
+ </a>
4
+
5
+ # RelativeCI agent core
6
+
7
+ > Send bundle stats and CI build information to [RelativeCI](https://relative-ci.com?utm_source=github&utm_medium=agent).
8
+
9
+ To get started, follow [RelativeCI Setup guide](https://relative-ci.com/documentation/setup?utm_source=github-agent).
10
+
11
+ ### Packages
12
+
13
+ #### [`@relative-ci/cli`](https://github.com/relative-ci/agent/tree/master/packages/cli)
14
+
15
+ [![npm](https://img.shields.io/npm/v/@relative-ci/cli.svg)](https://www.npmjs.com/package/@relative-ci/cli)
16
+ [![node version](https://img.shields.io/node/v/@relative-ci/cli.svg)](https://www.npmjs.com/package/@relative-ci/cli)
17
+ [![Socket Badge](https://socket.dev/api/badge/npm/package/@relative-ci/cli)](https://socket.dev/npm/package/@relative-ci/cli)
18
+ [![ci](https://github.com/relative-ci/agent/actions/workflows/ci.yml/badge.svg)](https://github.com/relative-ci/agent/actions/workflows/ci.yml)
19
+ [![CodeQL](https://github.com/relative-ci/agent/actions/workflows/codeql.yml/badge.svg)](https://github.com/relative-ci/agent/actions/workflows/codeql.yml)
20
+
21
+ To get started, follow [RelativeCI Setup guide for CLI](https://relative-ci.com/documentation/setup/agent/cli?utm_source=github&utm_medium=agent).
22
+
23
+ #### [`@relative-ci/webpack-plugin`](https://github.com/relative-ci/agent/tree/master/packages/webpack-plugin)
24
+
25
+ [![npm](https://img.shields.io/npm/v/@relative-ci/webpack-plugin.svg)](https://www.npmjs.com/package/@relative-ci/webpack-plugin)
26
+ [![node version](https://img.shields.io/node/v/@relative-ci/webpack-plugin.svg)](https://www.npmjs.com/package/@relative-ci/webpack-plugin)
27
+ [![Socket Badge](https://socket.dev/api/badge/npm/package/@relative-ci/webpack-plugin)](https://socket.dev/npm/package/@relative-ci/webpack-plugin)
28
+ [![ci](https://github.com/relative-ci/agent/actions/workflows/ci.yml/badge.svg)](https://github.com/relative-ci/agent/actions/workflows/ci.yml)
29
+ [![CodeQL](https://github.com/relative-ci/agent/actions/workflows/codeql.yml/badge.svg)](https://github.com/relative-ci/agent/actions/workflows/codeql.yml)
30
+
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
+
33
+ ## Other agents
34
+
35
+ - [GitHub action](https://github.com/relative-ci/cli-action)
36
+ - [CircleCI orbit (soon)](https://github.com/relative-ci/roadmap/issues/46)
@@ -25,7 +25,7 @@ function normalizeParams(pluginArgs, config) {
25
25
  service: envVars.service,
26
26
  key: envVars.key,
27
27
  endpoint: envVars.endpoint || constants.DEFAULT_ENDPOINT,
28
- agentVersion: "5.0.0-alpha.2",
28
+ agentVersion: "5.0.0-alpha.6",
29
29
  /**
30
30
  * Get commit message using git if includeCommitMessage is set and
31
31
  * the commitMessage plugin argument is missing
@@ -23,7 +23,7 @@ function normalizeParams(pluginArgs, config) {
23
23
  service: envVars.service,
24
24
  key: envVars.key,
25
25
  endpoint: envVars.endpoint || DEFAULT_ENDPOINT,
26
- agentVersion: "5.0.0-alpha.2",
26
+ agentVersion: "5.0.0-alpha.6",
27
27
  /**
28
28
  * Get commit message using git if includeCommitMessage is set and
29
29
  * the commitMessage plugin argument is missing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@relative-ci/core",
3
- "version": "5.0.0-alpha.2",
3
+ "version": "5.0.0-alpha.6",
4
4
  "description": "RelativeCI agent core",
5
5
  "keywords": [
6
6
  "webpack",
@@ -87,5 +87,6 @@
87
87
  "@bundle-stats/plugin-webpack-validate": "4.19.0",
88
88
  "debug": "4.4.0",
89
89
  "lodash": "4.17.21"
90
- }
90
+ },
91
+ "gitHead": "ee4f96779a13ef878a285aecfbec900a9d754a9f"
91
92
  }