@relative-ci/core 5.3.0-rc.6 → 5.3.0-rc.8

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.
@@ -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-rc.6",
27
+ agentVersion: "5.3.0-rc.8",
28
28
  agentType: args.agentType,
29
29
  key: agentEnv$1.key,
30
30
  endpoint: agentEnv$1.endpoint || constants.DEFAULT_ENDPOINT,
package/lib/cjs/index.js CHANGED
@@ -1,14 +1,14 @@
1
1
  'use strict';
2
2
 
3
3
  var constants = require('./constants.js');
4
- var ingest = require('./ingest/ingest.js');
5
4
  var debug = require('./utils/debug.js');
6
- var filterArtifacts = require('./artifacts/filter-artifacts.js');
7
5
  var fileSize = require('./utils/file-size.js');
8
6
  var logResponse = require('./utils/log-response.js');
9
7
  var logger = require('./utils/logger.js');
10
8
  var maskObjectProperty = require('./utils/mask-object-property.js');
11
9
  var round = require('./utils/round.js');
10
+ var ingest = require('./ingest/ingest.js');
11
+ var filterArtifacts = require('./artifacts/filter-artifacts.js');
12
12
  var validateWebpackStats = require('./artifacts/validate-webpack-stats.js');
13
13
 
14
14
 
@@ -16,14 +16,14 @@ var validateWebpackStats = require('./artifacts/validate-webpack-stats.js');
16
16
  exports.DEFAULT_ENDPOINT = constants.DEFAULT_ENDPOINT;
17
17
  exports.MASK = constants.MASK;
18
18
  exports.SOURCE_WEBPACK_STATS = constants.SOURCE_WEBPACK_STATS;
19
- exports.ingest = ingest;
20
19
  exports.AGENT_DEBUG_NAME = debug.AGENT_DEBUG_NAME;
21
20
  exports.debug = debug.debug;
22
- exports.filterArtifacts = filterArtifacts.filterArtifacts;
23
21
  exports.formatFileSize = fileSize.formatFileSize;
24
22
  exports.logResponse = logResponse.logResponse;
25
23
  exports.logger = logger.logger;
26
24
  exports.maskObjectProperties = maskObjectProperty.maskObjectProperties;
27
25
  exports.round = round.round;
26
+ exports.ingest = ingest;
27
+ exports.filterArtifacts = filterArtifacts.filterArtifacts;
28
28
  exports.validateWebpackStats = validateWebpackStats.validateWebpackStats;
29
29
  //# sourceMappingURL=index.js.map
@@ -5,9 +5,9 @@ var path = require('node:path');
5
5
  var require$$3 = require('node:zlib');
6
6
  var require$$1 = require('node:util');
7
7
  var locales_en = require('../locales/en.js');
8
- var logger = require('../utils/logger.js');
9
8
  var debug = require('../utils/debug.js');
10
9
  var fileSize = require('../utils/file-size.js');
10
+ var logger = require('../utils/logger.js');
11
11
  var maskObjectProperty = require('../utils/mask-object-property.js');
12
12
 
13
13
  function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
@@ -1,6 +1,6 @@
1
1
  import { endpoint } from '../../endpoint/dist-bundle/index.js';
2
2
  import { getUserAgent } from '../../../universal-user-agent/index.js';
3
- import { f as fastContentTypeParseExports } from '../../../../_virtual/index9.js';
3
+ import { f as fastContentTypeParseExports } from '../../../../_virtual/index10.js';
4
4
  import { JSONStringify, JSONParse } from '../../../json-with-bigint/json-with-bigint.js';
5
5
  import { RequestError } from '../../request-error/dist-src/index.js';
6
6
 
@@ -1,4 +1,4 @@
1
- import { __exports as undici } from '../../_virtual/index10.js';
1
+ import { __exports as undici } from '../../_virtual/index9.js';
2
2
  import { __require as requireClient } from './lib/client.js';
3
3
  import { __require as requireDispatcher } from './lib/dispatcher.js';
4
4
  import { __require as requireErrors } from './lib/core/errors.js';
@@ -1,4 +1,6 @@
1
- var undici = {};
1
+ import { __require as requireFastContentTypeParse } from '../__/fast-content-type-parse/index.js';
2
2
 
3
- export { undici as __exports };
3
+ var fastContentTypeParseExports = requireFastContentTypeParse();
4
+
5
+ export { fastContentTypeParseExports as f };
4
6
  //# sourceMappingURL=index10.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index10.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
1
+ {"version":3,"file":"index10.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
@@ -1,6 +1,4 @@
1
- import { __require as requireFastContentTypeParse } from '../__/fast-content-type-parse/index.js';
1
+ var undici = {};
2
2
 
3
- var fastContentTypeParseExports = requireFastContentTypeParse();
4
-
5
- export { fastContentTypeParseExports as f };
3
+ export { undici as __exports };
6
4
  //# sourceMappingURL=index9.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index9.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
1
+ {"version":3,"file":"index9.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
@@ -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-rc.6",
25
+ agentVersion: "5.3.0-rc.8",
26
26
  agentType: args.agentType,
27
27
  key: agentEnv.key,
28
28
  endpoint: agentEnv.endpoint || DEFAULT_ENDPOINT,
package/lib/esm/index.js CHANGED
@@ -1,3 +1,5 @@
1
+ export { filterArtifacts } from './artifacts/filter-artifacts.js';
2
+ export { validateWebpackStats } from './artifacts/validate-webpack-stats.js';
1
3
  export { DEFAULT_ENDPOINT, MASK, SOURCE_WEBPACK_STATS } from './constants.js';
2
4
  export { AGENT_DEBUG_NAME, debug } from './utils/debug.js';
3
5
  export { formatFileSize } from './utils/file-size.js';
@@ -6,6 +8,4 @@ export { logger } from './utils/logger.js';
6
8
  export { maskObjectProperties } from './utils/mask-object-property.js';
7
9
  export { round } from './utils/round.js';
8
10
  export { default as ingest } from './ingest/ingest.js';
9
- export { filterArtifacts } from './artifacts/filter-artifacts.js';
10
- export { validateWebpackStats } from './artifacts/validate-webpack-stats.js';
11
11
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@relative-ci/core",
3
- "version": "5.3.0-rc.6",
3
+ "version": "5.3.0-rc.8",
4
4
  "description": "Core library for RelativeCI agent - send bundle stats and CI build information to RelativeCI",
5
5
  "keywords": [
6
6
  "relative-ci",
@@ -107,5 +107,5 @@
107
107
  "fs-extra": "11.3.4",
108
108
  "lodash": "4.17.23"
109
109
  },
110
- "gitHead": "ea66bddab22732fb3eed11edd9bf8d1d4e0d2777"
110
+ "gitHead": "2f64a27c152ac5ed168addbad874171f3c281a54"
111
111
  }