@yarn-tool/static-file 1.0.83 → 1.0.87

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,50 @@
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.87](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.86...@yarn-tool/static-file@1.0.87) (2021-12-31)
7
+
8
+
9
+ ### 📦 Code Refactoring
10
+
11
+ * code splitting ([3236306](https://github.com/bluelovers/ws-yarn-workspaces/commit/323630687dcfaa851cd65176d446d55f74a1dd3b))
12
+
13
+
14
+
15
+
16
+
17
+ ## [1.0.86](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.85...@yarn-tool/static-file@1.0.86) (2021-12-29)
18
+
19
+
20
+ ### ♻️ Chores
21
+
22
+ * update package.json ([391e340](https://github.com/bluelovers/ws-yarn-workspaces/commit/391e340b2d0f763f766d59ff15cf78f5a869c163))
23
+
24
+
25
+
26
+
27
+
28
+ ## [1.0.85](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.84...@yarn-tool/static-file@1.0.85) (2021-12-29)
29
+
30
+
31
+ ### 🔖 Miscellaneous
32
+
33
+ * . ([07e4c35](https://github.com/bluelovers/ws-yarn-workspaces/commit/07e4c3538ae75e01c6c275d64ddf80a05472a90b))
34
+
35
+
36
+
37
+
38
+
39
+ ## [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)
40
+
41
+
42
+ ### 🔖 Miscellaneous
43
+
44
+ * . ([3c3445a](https://github.com/bluelovers/ws-yarn-workspaces/commit/3c3445a7b9302a8f4bc39bf8f3b023ac32351533))
45
+
46
+
47
+
48
+
49
+
6
50
  ## [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
51
 
8
52
 
package/file/eslintignore CHANGED
@@ -24,3 +24,9 @@ bin/**/*
24
24
 
25
25
  *.tsbuildinfo
26
26
 
27
+ /_*/
28
+ /.pnp
29
+ /.next/
30
+ /out/
31
+ /build
32
+ /.*/
package/file/gitignore CHANGED
@@ -198,8 +198,8 @@ jest.config.js.map
198
198
  !npm-shrinkwrap.json
199
199
  *.stat
200
200
  .vercel
201
- /test/tsconfig.json.tpl
202
- /tsconfig.json.tpl
201
+ /test/*.tpl
202
+ /*.tpl
203
203
  /report.json
204
204
 
205
205
  .opt-in
@@ -78,9 +78,14 @@ module.exports = {
78
78
  //testRunner: 'jest-circus/runner',
79
79
  setupFilesAfterEnv: [
80
80
  //"jest-chain",
81
- //"jest-extended",
81
+ //"jest-extended/all",
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,8 +1,8 @@
1
1
  {
2
2
  "name": "@yarn-tool/static-file",
3
- "version": "1.0.83",
3
+ "version": "1.0.87",
4
4
  "description": "",
5
- "homepage": "https://github.com/bluelovers/ws-yarn-workspaces#readme",
5
+ "homepage": "https://github.com/bluelovers/ws-yarn-workspaces/tree/master/packages/@yarn-tool/static-file#readme",
6
6
  "bugs": {
7
7
  "url": "https://github.com/bluelovers/ws-yarn-workspaces/issues"
8
8
  },
@@ -31,5 +31,5 @@
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "8ab770a04271b5c56594af452dbbb82c00b2b5a2"
34
+ "gitHead": "7035d85a64ab9f80024d65e19b8137e8d4dfdd77"
35
35
  }