testilo 21.5.0 → 21.5.2
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/merge.js +2 -2
- package/package.json +1 -1
- package/procs/digest/tdp39/index.js +2 -2
package/merge.js
CHANGED
|
@@ -95,8 +95,8 @@ exports.merge = (script, batch, requester, isolate, standard, observe, timeStamp
|
|
|
95
95
|
const creationTime = (new Date()).toISOString().slice(0, 16);
|
|
96
96
|
// Initialize a target-independent job.
|
|
97
97
|
const protoJob = JSON.parse(JSON.stringify(script));
|
|
98
|
-
// Make the timestamp and a random string the
|
|
99
|
-
protoJob.id = `${timeStamp}-${getRandomID(Number.parseInt(randomIDLength, 10))}
|
|
98
|
+
// Make the timestamp and a random string the start of the job ID.
|
|
99
|
+
protoJob.id = `${timeStamp}-${getRandomID(Number.parseInt(randomIDLength, 10))}-`;
|
|
100
100
|
// Add a sources property to the job.
|
|
101
101
|
protoJob.sources = {
|
|
102
102
|
script: script.id,
|
package/package.json
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
// IMPORTS
|
|
4
4
|
|
|
5
5
|
// Module to classify tool rules into issues
|
|
6
|
-
const {issues} = require('../../score/
|
|
6
|
+
const {issues} = require('../../score/tic39');
|
|
7
7
|
// Module to process files.
|
|
8
8
|
const fs = require('fs/promises');
|
|
9
9
|
|
|
10
10
|
// CONSTANTS
|
|
11
11
|
|
|
12
12
|
// Digester ID.
|
|
13
|
-
const id = '
|
|
13
|
+
const id = 'tdp39';
|
|
14
14
|
// Newline with indentations.
|
|
15
15
|
const innerJoiner = '\n ';
|
|
16
16
|
|