@yarn-tool/static-file 1.0.83 → 1.0.84

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.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.0.84](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.83...@yarn-tool/static-file@1.0.84) (2021-12-27)
7
+
8
+
9
+ ### 🔖 Miscellaneous
10
+
11
+ * . ([3c3445a](https://github.com/bluelovers/ws-yarn-workspaces/commit/3c3445a7b9302a8f4bc39bf8f3b023ac32351533))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.0.83](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.82...@yarn-tool/static-file@1.0.83) (2021-12-27)
7
18
 
8
19
 
@@ -81,6 +81,11 @@ module.exports = {
81
81
  //"jest-extended",
82
82
  //"jest-extended-extra",
83
83
  //"jest-num-close-with",
84
+ /**
85
+ * https://medium.com/doctolib/how-to-run-the-same-jest-test-suite-across-several-platforms-jest-os-detection-plugin-included-f8113832482b
86
+ * https://github.com/doctolib/jest-os-detection
87
+ */
88
+ //'jest-os-detection',
84
89
  ],
85
90
  transform: {
86
91
  '.(ts|tsx|mts|cts)$': _requireResolve('ts-jest'),
@@ -1 +1,2 @@
1
1
  export declare const __root: string;
2
+ export declare const isWin: boolean;
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.__root = void 0;
3
+ exports.isWin = exports.__root = void 0;
4
4
  const path_1 = require("path");
5
5
  exports.__root = (0, path_1.join)(__dirname, '..');
6
+ exports.isWin = process.platform === "win32";
6
7
  //# sourceMappingURL=__root.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"__root.js","sourceRoot":"","sources":["__root.ts"],"names":[],"mappings":";;;AAAA,+BAA4B;AAEf,QAAA,MAAM,GAAG,IAAA,WAAI,EAAC,SAAS,EAAE,IAAI,CAAC,CAAC","sourcesContent":["import { join } from \"path\";\n\nexport const __root = join(__dirname, '..');\n"]}
1
+ {"version":3,"file":"__root.js","sourceRoot":"","sources":["__root.ts"],"names":[],"mappings":";;;AAAA,+BAA4B;AAEf,QAAA,MAAM,GAAG,IAAA,WAAI,EAAC,SAAS,EAAE,IAAI,CAAC,CAAC;AAE/B,QAAA,KAAK,GAAG,OAAO,CAAC,QAAQ,KAAK,OAAO,CAAC","sourcesContent":["import { join } from \"path\";\n\nexport const __root = join(__dirname, '..');\n\nexport const isWin = process.platform === \"win32\";\n"]}
@@ -1,3 +1,5 @@
1
1
  import { join } from "path";
2
2
 
3
3
  export const __root = join(__dirname, '..');
4
+
5
+ export const isWin = process.platform === "win32";
@@ -1 +1,2 @@
1
1
  export declare const __root_ws: string;
2
+ export declare const isWin: boolean;
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.__root_ws = void 0;
3
+ exports.isWin = exports.__root_ws = void 0;
4
4
  const path_1 = require("path");
5
5
  exports.__root_ws = (0, path_1.join)(__dirname);
6
+ exports.isWin = process.platform === "win32";
6
7
  //# sourceMappingURL=__root_ws.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"__root_ws.js","sourceRoot":"","sources":["__root_ws.ts"],"names":[],"mappings":";;;AAAA,+BAA4B;AAEf,QAAA,SAAS,GAAG,IAAA,WAAI,EAAC,SAAS,CAAC,CAAC","sourcesContent":["import { join } from \"path\";\n\nexport const __root_ws = join(__dirname);\n"]}
1
+ {"version":3,"file":"__root_ws.js","sourceRoot":"","sources":["__root_ws.ts"],"names":[],"mappings":";;;AAAA,+BAA4B;AAEf,QAAA,SAAS,GAAG,IAAA,WAAI,EAAC,SAAS,CAAC,CAAC;AAE5B,QAAA,KAAK,GAAG,OAAO,CAAC,QAAQ,KAAK,OAAO,CAAC","sourcesContent":["import { join } from \"path\";\n\nexport const __root_ws = join(__dirname);\n\nexport const isWin = process.platform === \"win32\";\n"]}
@@ -1,3 +1,5 @@
1
1
  import { join } from "path";
2
2
 
3
3
  export const __root_ws = join(__dirname);
4
+
5
+ export const isWin = process.platform === "win32";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yarn-tool/static-file",
3
- "version": "1.0.83",
3
+ "version": "1.0.84",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/bluelovers/ws-yarn-workspaces#readme",
6
6
  "bugs": {
@@ -31,5 +31,5 @@
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "8ab770a04271b5c56594af452dbbb82c00b2b5a2"
34
+ "gitHead": "00378bc6e02462695f4388c0607915787e011453"
35
35
  }