lage 1.8.1 → 1.8.3

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/CHANGELOG.json CHANGED
@@ -1,6 +1,96 @@
1
1
  {
2
2
  "name": "lage",
3
3
  "entries": [
4
+ {
5
+ "date": "Fri, 16 Sep 2022 23:45:19 GMT",
6
+ "tag": "lage_v1.8.3",
7
+ "version": "1.8.3",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "elcraig@microsoft.com",
12
+ "package": "lage",
13
+ "commit": "9712fbe4c78c803822302d8a83ace2bc7f7c923e",
14
+ "comment": "Remove unused and non-exported path utilities"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Fri, 16 Sep 2022 23:37:14 GMT",
21
+ "tag": "lage_v1.8.2",
22
+ "version": "1.8.2",
23
+ "comments": {
24
+ "patch": [
25
+ {
26
+ "author": "renovate@whitesourcesoftware.com",
27
+ "package": "lage",
28
+ "commit": "9d9570be7ca46df5e105bdc4060e3dbe518f097a",
29
+ "comment": "Update dependency mermaid to v9 [SECURITY]"
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "date": "Fri, 16 Sep 2022 20:12:14 GMT",
36
+ "tag": "lage_v1.8.1",
37
+ "version": "1.8.1",
38
+ "comments": {
39
+ "none": [
40
+ {
41
+ "author": "renovate@whitesourcesoftware.com",
42
+ "package": "lage",
43
+ "commit": "486f2bf2ecaa0a3bf963d3e3e7df9a92697ecdc9",
44
+ "comment": "Update devDependency gh-pages to v4"
45
+ }
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "date": "Fri, 16 Sep 2022 20:06:10 GMT",
51
+ "tag": "lage_v1.8.1",
52
+ "version": "1.8.1",
53
+ "comments": {
54
+ "none": [
55
+ {
56
+ "author": "email not defined",
57
+ "package": "lage",
58
+ "commit": "4cc6afee8a8b0eeabd5e36f764615860baca6de4",
59
+ "comment": "Update devDependency @types/node to v14.18.29"
60
+ }
61
+ ]
62
+ }
63
+ },
64
+ {
65
+ "date": "Fri, 16 Sep 2022 03:59:54 GMT",
66
+ "tag": "lage_v1.8.1",
67
+ "version": "1.8.1",
68
+ "comments": {
69
+ "none": [
70
+ {
71
+ "author": "renovate@whitesourcesoftware.com",
72
+ "package": "lage",
73
+ "commit": "feb30c988cd07f121e217f9825758af844b18b77",
74
+ "comment": "Update jest monorepo to v29"
75
+ }
76
+ ]
77
+ }
78
+ },
79
+ {
80
+ "date": "Fri, 16 Sep 2022 01:59:38 GMT",
81
+ "tag": "lage_v1.8.1",
82
+ "version": "1.8.1",
83
+ "comments": {
84
+ "none": [
85
+ {
86
+ "author": "email not defined",
87
+ "package": "lage",
88
+ "commit": "7bb3cfa39ca17144915a94233b46ba67e284788f",
89
+ "comment": "Pin devDependencies"
90
+ }
91
+ ]
92
+ }
93
+ },
4
94
  {
5
95
  "date": "Wed, 31 Aug 2022 19:31:26 GMT",
6
96
  "tag": "lage_v1.8.0",
package/CHANGELOG.md CHANGED
@@ -1,9 +1,25 @@
1
1
  # Change Log - lage
2
2
 
3
- This log was last generated on Wed, 31 Aug 2022 19:31:26 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 16 Sep 2022 23:45:19 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 1.8.3
8
+
9
+ Fri, 16 Sep 2022 23:45:19 GMT
10
+
11
+ ### Patches
12
+
13
+ - Remove unused and non-exported path utilities (elcraig@microsoft.com)
14
+
15
+ ## 1.8.2
16
+
17
+ Fri, 16 Sep 2022 23:37:14 GMT
18
+
19
+ ### Patches
20
+
21
+ - Update dependency mermaid to v9 [SECURITY] (renovate@whitesourcesoftware.com)
22
+
7
23
  ## 1.8.0
8
24
 
9
25
  Wed, 31 Aug 2022 19:31:26 GMT
package/jest.config.js CHANGED
@@ -1,17 +1 @@
1
- module.exports = {
2
- clearMocks: true,
3
- collectCoverage: false,
4
- collectCoverageFrom: ["src/**/*.ts", "!src/types/*.ts", "!**/node_modules/**"],
5
- coverageDirectory: "coverage",
6
- coverageProvider: "v8",
7
- globals: {
8
- "ts-jest": {
9
- isolatedModules: true,
10
- },
11
- },
12
- preset: "ts-jest",
13
- testMatch: ["**/?(*.)+(spec|test).[tj]s?(x)"],
14
- testPathIgnorePatterns: ["/node_modules/"],
15
- transformIgnorePatterns: ["/node_modules/", "\\.pnp\\.[^\\/]+$"],
16
- watchPathIgnorePatterns: ["/node_modules/"],
17
- };
1
+ module.exports = require("../../scripts/config/jest.config");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lage",
3
- "version": "1.8.1",
3
+ "version": "1.8.3",
4
4
  "description": "A monorepo task runner",
5
5
  "repository": {
6
6
  "url": "https://github.com/microsoft/lage"
@@ -26,7 +26,7 @@
26
26
  "test": "jest"
27
27
  },
28
28
  "resolutions": {
29
- "mermaid": "8.14.0",
29
+ "mermaid": "9.1.2",
30
30
  "watchpack": "1.7.5"
31
31
  },
32
32
  "dependencies": {
@@ -54,16 +54,16 @@
54
54
  "@types/cosmiconfig": "6.0.0",
55
55
  "@types/execa": "2.0.0",
56
56
  "@types/ioredis": "4.28.10",
57
- "@types/jest": "^27.0.1",
58
- "@types/node": "14.18.26",
57
+ "@types/jest": "29.0.3",
58
+ "@types/node": "14.18.29",
59
59
  "@types/npmlog": "4.1.4",
60
60
  "@types/p-queue": "3.2.1",
61
61
  "@types/yargs-parser": "15.0.0",
62
62
  "beachball": "2.30.1",
63
- "gh-pages": "2.2.0",
64
- "jest": "^27.2.0",
65
- "ts-jest": "^27.0.5",
63
+ "gh-pages": "4.0.0",
64
+ "jest": "29.0.3",
65
+ "ts-jest": "29.0.1",
66
66
  "ts-node": "8.10.2",
67
- "typescript": "^4.4.4"
67
+ "typescript": "4.6.4"
68
68
  }
69
69
  }
package/tsconfig.json CHANGED
@@ -1,7 +1,4 @@
1
1
  {
2
- "ts-node": {
3
- "transpileOnly": true
4
- },
5
2
  "compilerOptions": {
6
3
  "target": "ES2017",
7
4
  "module": "CommonJS",
package/lib/paths.d.ts DELETED
@@ -1,8 +0,0 @@
1
- /**
2
- * Starting from `cwd`, searches up the directory hierarchy for `pathName`
3
- * @param pathName
4
- * @param cwd
5
- */
6
- export declare function searchUp(pathName: string, cwd: string): string | null;
7
- export declare function findPackageRoot(cwd: string): string | null;
8
- export declare function isChildOf(child: string, parent: string): boolean;
package/lib/paths.js DELETED
@@ -1,39 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.isChildOf = exports.findPackageRoot = exports.searchUp = void 0;
7
- const path_1 = __importDefault(require("path"));
8
- const fs_1 = __importDefault(require("fs"));
9
- /**
10
- * Starting from `cwd`, searches up the directory hierarchy for `pathName`
11
- * @param pathName
12
- * @param cwd
13
- */
14
- function searchUp(pathName, cwd) {
15
- const root = path_1.default.parse(cwd).root;
16
- let found = false;
17
- while (!found && cwd !== root) {
18
- if (fs_1.default.existsSync(path_1.default.join(cwd, pathName))) {
19
- found = true;
20
- break;
21
- }
22
- cwd = path_1.default.dirname(cwd);
23
- }
24
- if (found) {
25
- return cwd;
26
- }
27
- return null;
28
- }
29
- exports.searchUp = searchUp;
30
- function findPackageRoot(cwd) {
31
- return searchUp("package.json", cwd);
32
- }
33
- exports.findPackageRoot = findPackageRoot;
34
- function isChildOf(child, parent) {
35
- const relativePath = path_1.default.relative(child, parent);
36
- return /^[.\/\\]+$/.test(relativePath);
37
- }
38
- exports.isChildOf = isChildOf;
39
- //# sourceMappingURL=paths.js.map
package/lib/paths.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"paths.js","sourceRoot":"","sources":["../src/paths.ts"],"names":[],"mappings":";;;;;;AAAA,gDAAwB;AACxB,4CAAoB;AAEpB;;;;GAIG;AACH,SAAgB,QAAQ,CAAC,QAAgB,EAAE,GAAW;IACpD,MAAM,IAAI,GAAG,cAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC;IAElC,IAAI,KAAK,GAAG,KAAK,CAAC;IAElB,OAAO,CAAC,KAAK,IAAI,GAAG,KAAK,IAAI,EAAE;QAC7B,IAAI,YAAE,CAAC,UAAU,CAAC,cAAI,CAAC,IAAI,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAC,EAAE;YAC3C,KAAK,GAAG,IAAI,CAAC;YACb,MAAM;SACP;QAED,GAAG,GAAG,cAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;KACzB;IAED,IAAI,KAAK,EAAE;QACT,OAAO,GAAG,CAAC;KACZ;IAED,OAAO,IAAI,CAAC;AACd,CAAC;AAnBD,4BAmBC;AAED,SAAgB,eAAe,CAAC,GAAW;IACzC,OAAO,QAAQ,CAAC,cAAc,EAAE,GAAG,CAAC,CAAC;AACvC,CAAC;AAFD,0CAEC;AAED,SAAgB,SAAS,CAAC,KAAa,EAAE,MAAc;IACrD,MAAM,YAAY,GAAG,cAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;IAClD,OAAO,YAAY,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;AACzC,CAAC;AAHD,8BAGC"}