@modern-js/utils 2.12.0 → 2.12.1-alpha.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (229) hide show
  1. package/dist/{alias.js → cjs/alias.js} +4 -15
  2. package/dist/{analyzeProject.js → cjs/analyzeProject.js} +5 -25
  3. package/dist/{babel.js → cjs/babel.js} +9 -16
  4. package/dist/{compatRequire.js → cjs/compatRequire.js} +4 -17
  5. package/dist/{compiled.js → cjs/compiled.js} +3 -3
  6. package/dist/cjs/emptyDir.js +32 -0
  7. package/dist/{getEntryOptions.js → cjs/getEntryOptions.js} +1 -15
  8. package/dist/{getPackageManager.js → cjs/getPackageManager.js} +19 -41
  9. package/dist/{getPort.js → cjs/getPort.js} +4 -24
  10. package/dist/{getServerConfig.js → cjs/getServerConfig.js} +2 -22
  11. package/dist/{import.js → cjs/import.js} +1 -1
  12. package/dist/{logger.js → cjs/logger.js} +5 -16
  13. package/dist/{monorepo.js → cjs/monorepo.js} +4 -15
  14. package/dist/cjs/nodeEnv.js +55 -0
  15. package/dist/{path.js → cjs/path.js} +1 -1
  16. package/dist/{pathSerializer.js → cjs/pathSerializer.js} +1 -1
  17. package/dist/{react.js → cjs/react.js} +4 -15
  18. package/dist/{runtimeExports.js → cjs/runtimeExports.js} +1 -1
  19. package/dist/{universal → cjs/universal}/nestedRoutes.js +2 -19
  20. package/dist/cjs/version.js +59 -0
  21. package/dist/{watch.js → cjs/watch.js} +9 -29
  22. package/dist/esm/FileSizeReporter.js +180 -0
  23. package/dist/esm/alias.js +83 -0
  24. package/dist/esm/analyzeProject.js +168 -0
  25. package/dist/esm/applyOptionsChain.js +26 -0
  26. package/dist/esm/babel.js +169 -0
  27. package/dist/esm/chainId.js +92 -0
  28. package/dist/esm/clearConsole.js +6 -0
  29. package/dist/esm/commands.js +17 -0
  30. package/dist/esm/compatRequire.js +68 -0
  31. package/dist/esm/compiled.js +34 -0
  32. package/dist/esm/constants.js +317 -0
  33. package/dist/esm/debug.js +5 -0
  34. package/dist/esm/emptyDir.js +158 -0
  35. package/dist/esm/ensureAbsolutePath.js +5 -0
  36. package/dist/esm/ensureArray.js +9 -0
  37. package/dist/esm/findExists.js +27 -0
  38. package/dist/esm/generateMetaTags.js +40 -0
  39. package/dist/esm/getBrowserslist.js +12 -0
  40. package/dist/esm/getCoreJsVersion.js +57 -0
  41. package/dist/esm/getEntryOptions.js +45 -0
  42. package/dist/esm/getPackageManager.js +187 -0
  43. package/dist/esm/getPort.js +215 -0
  44. package/dist/esm/getServerConfig.js +145 -0
  45. package/dist/esm/getTargetDir.js +6 -0
  46. package/dist/esm/import.js +8 -0
  47. package/dist/esm/index.js +44 -0
  48. package/dist/esm/is/index.js +85 -0
  49. package/dist/esm/is/nodeEnv.js +16 -0
  50. package/dist/esm/is/platform.js +7 -0
  51. package/dist/esm/is/type.js +25 -0
  52. package/dist/esm/logger.js +207 -0
  53. package/dist/esm/monorepo.js +109 -0
  54. package/dist/esm/nodeEnv.js +258 -0
  55. package/dist/esm/path.js +85 -0
  56. package/dist/esm/pathSerializer.js +85 -0
  57. package/dist/esm/plugin.js +45 -0
  58. package/dist/esm/prettyInstructions.js +96 -0
  59. package/dist/esm/printBuildError.js +24 -0
  60. package/dist/esm/react.js +43 -0
  61. package/dist/esm/readTsConfig.js +10 -0
  62. package/dist/esm/removeSlash.js +10 -0
  63. package/dist/esm/resolve.js +42 -0
  64. package/dist/esm/routes.js +19 -0
  65. package/dist/esm/runtimeExports.js +65 -0
  66. package/dist/esm/ssr.js +3 -0
  67. package/dist/esm/storage.js +36 -0
  68. package/dist/esm/testUtils.js +13 -0
  69. package/dist/esm/types.js +1 -0
  70. package/dist/esm/universal/constants.js +3 -0
  71. package/dist/esm/universal/formatWebpack.js +108 -0
  72. package/dist/esm/universal/nestedRoutes.js +174 -0
  73. package/dist/esm/universal/remixRouter.js +1 -0
  74. package/dist/esm/universal/serialize.js +7 -0
  75. package/dist/esm/version.js +193 -0
  76. package/dist/esm/wait.js +7 -0
  77. package/dist/esm/watch.js +230 -0
  78. package/dist/esm-node/FileSizeReporter.js +133 -0
  79. package/dist/esm-node/alias.js +61 -0
  80. package/dist/esm-node/analyzeProject.js +17 -0
  81. package/dist/esm-node/applyOptionsChain.js +35 -0
  82. package/dist/esm-node/babel.js +105 -0
  83. package/dist/esm-node/chainId.js +173 -0
  84. package/dist/esm-node/clearConsole.js +8 -0
  85. package/dist/esm-node/commands.js +22 -0
  86. package/dist/esm-node/compatRequire.js +42 -0
  87. package/dist/esm-node/compiled.js +77 -0
  88. package/dist/esm-node/constants.js +264 -0
  89. package/dist/esm-node/debug.js +5 -0
  90. package/dist/esm-node/emptyDir.js +9 -0
  91. package/dist/esm-node/ensureAbsolutePath.js +5 -0
  92. package/dist/esm-node/ensureArray.js +9 -0
  93. package/dist/esm-node/findExists.js +12 -0
  94. package/dist/esm-node/generateMetaTags.js +38 -0
  95. package/dist/esm-node/getBrowserslist.js +7 -0
  96. package/dist/esm-node/getCoreJsVersion.js +13 -0
  97. package/dist/esm-node/getEntryOptions.js +17 -0
  98. package/dist/esm-node/getPackageManager.js +32 -0
  99. package/dist/esm-node/getPort.js +59 -0
  100. package/dist/esm-node/getServerConfig.js +14 -0
  101. package/dist/esm-node/getTargetDir.js +8 -0
  102. package/dist/esm-node/import.js +9 -0
  103. package/dist/esm-node/index.js +44 -0
  104. package/dist/esm-node/is/index.js +71 -0
  105. package/dist/esm-node/is/nodeEnv.js +12 -0
  106. package/dist/esm-node/is/platform.js +6 -0
  107. package/dist/esm-node/is/type.js +34 -0
  108. package/dist/esm-node/logger.js +100 -0
  109. package/dist/esm-node/monorepo.js +87 -0
  110. package/dist/esm-node/nodeEnv.js +30 -0
  111. package/dist/esm-node/path.js +50 -0
  112. package/dist/esm-node/pathSerializer.js +46 -0
  113. package/dist/esm-node/plugin.js +23 -0
  114. package/dist/esm-node/prettyInstructions.js +77 -0
  115. package/dist/esm-node/printBuildError.js +34 -0
  116. package/dist/esm-node/react.js +20 -0
  117. package/dist/esm-node/readTsConfig.js +13 -0
  118. package/dist/esm-node/removeSlash.js +8 -0
  119. package/dist/esm-node/resolve.js +38 -0
  120. package/dist/esm-node/routes.js +24 -0
  121. package/dist/esm-node/runtimeExports.js +40 -0
  122. package/dist/esm-node/ssr.js +6 -0
  123. package/dist/esm-node/storage.js +42 -0
  124. package/dist/esm-node/testUtils.js +15 -0
  125. package/dist/esm-node/types.js +0 -0
  126. package/dist/esm-node/universal/constants.js +6 -0
  127. package/dist/esm-node/universal/formatWebpack.js +77 -0
  128. package/dist/esm-node/universal/nestedRoutes.js +93 -0
  129. package/dist/esm-node/universal/remixRouter.js +1 -0
  130. package/dist/esm-node/universal/serialize.js +7 -0
  131. package/dist/esm-node/version.js +25 -0
  132. package/dist/esm-node/wait.js +6 -0
  133. package/dist/esm-node/watch.js +36 -0
  134. package/dist/types/compiled.d.ts +43 -0
  135. package/dist/{debug.d.ts → types/debug.d.ts} +1 -1
  136. package/dist/{logger.d.ts → types/logger.d.ts} +1 -1
  137. package/package.json +53 -21
  138. package/dist/compiled.d.ts +0 -43
  139. package/dist/emptyDir.js +0 -52
  140. package/dist/nodeEnv.js +0 -81
  141. package/dist/version.js +0 -92
  142. /package/dist/{FileSizeReporter.js → cjs/FileSizeReporter.js} +0 -0
  143. /package/dist/{applyOptionsChain.js → cjs/applyOptionsChain.js} +0 -0
  144. /package/dist/{chainId.js → cjs/chainId.js} +0 -0
  145. /package/dist/{clearConsole.js → cjs/clearConsole.js} +0 -0
  146. /package/dist/{commands.js → cjs/commands.js} +0 -0
  147. /package/dist/{constants.js → cjs/constants.js} +0 -0
  148. /package/dist/{debug.js → cjs/debug.js} +0 -0
  149. /package/dist/{ensureAbsolutePath.js → cjs/ensureAbsolutePath.js} +0 -0
  150. /package/dist/{ensureArray.js → cjs/ensureArray.js} +0 -0
  151. /package/dist/{findExists.js → cjs/findExists.js} +0 -0
  152. /package/dist/{generateMetaTags.js → cjs/generateMetaTags.js} +0 -0
  153. /package/dist/{getBrowserslist.js → cjs/getBrowserslist.js} +0 -0
  154. /package/dist/{getCoreJsVersion.js → cjs/getCoreJsVersion.js} +0 -0
  155. /package/dist/{getTargetDir.js → cjs/getTargetDir.js} +0 -0
  156. /package/dist/{index.js → cjs/index.js} +0 -0
  157. /package/dist/{is → cjs/is}/index.js +0 -0
  158. /package/dist/{is → cjs/is}/nodeEnv.js +0 -0
  159. /package/dist/{is → cjs/is}/platform.js +0 -0
  160. /package/dist/{is → cjs/is}/type.js +0 -0
  161. /package/dist/{plugin.js → cjs/plugin.js} +0 -0
  162. /package/dist/{prettyInstructions.js → cjs/prettyInstructions.js} +0 -0
  163. /package/dist/{printBuildError.js → cjs/printBuildError.js} +0 -0
  164. /package/dist/{readTsConfig.js → cjs/readTsConfig.js} +0 -0
  165. /package/dist/{removeSlash.js → cjs/removeSlash.js} +0 -0
  166. /package/dist/{resolve.js → cjs/resolve.js} +0 -0
  167. /package/dist/{routes.js → cjs/routes.js} +0 -0
  168. /package/dist/{ssr.js → cjs/ssr.js} +0 -0
  169. /package/dist/{storage.js → cjs/storage.js} +0 -0
  170. /package/dist/{testUtils.js → cjs/testUtils.js} +0 -0
  171. /package/dist/{types.js → cjs/types.js} +0 -0
  172. /package/dist/{universal → cjs/universal}/constants.js +0 -0
  173. /package/dist/{universal → cjs/universal}/formatWebpack.js +0 -0
  174. /package/dist/{universal → cjs/universal}/remixRouter.js +0 -0
  175. /package/dist/{universal → cjs/universal}/serialize.js +0 -0
  176. /package/dist/{wait.js → cjs/wait.js} +0 -0
  177. /package/dist/{FileSizeReporter.d.ts → types/FileSizeReporter.d.ts} +0 -0
  178. /package/dist/{alias.d.ts → types/alias.d.ts} +0 -0
  179. /package/dist/{analyzeProject.d.ts → types/analyzeProject.d.ts} +0 -0
  180. /package/dist/{applyOptionsChain.d.ts → types/applyOptionsChain.d.ts} +0 -0
  181. /package/dist/{babel.d.ts → types/babel.d.ts} +0 -0
  182. /package/dist/{chainId.d.ts → types/chainId.d.ts} +0 -0
  183. /package/dist/{clearConsole.d.ts → types/clearConsole.d.ts} +0 -0
  184. /package/dist/{commands.d.ts → types/commands.d.ts} +0 -0
  185. /package/dist/{compatRequire.d.ts → types/compatRequire.d.ts} +0 -0
  186. /package/dist/{constants.d.ts → types/constants.d.ts} +0 -0
  187. /package/dist/{emptyDir.d.ts → types/emptyDir.d.ts} +0 -0
  188. /package/dist/{ensureAbsolutePath.d.ts → types/ensureAbsolutePath.d.ts} +0 -0
  189. /package/dist/{ensureArray.d.ts → types/ensureArray.d.ts} +0 -0
  190. /package/dist/{findExists.d.ts → types/findExists.d.ts} +0 -0
  191. /package/dist/{generateMetaTags.d.ts → types/generateMetaTags.d.ts} +0 -0
  192. /package/dist/{getBrowserslist.d.ts → types/getBrowserslist.d.ts} +0 -0
  193. /package/dist/{getCoreJsVersion.d.ts → types/getCoreJsVersion.d.ts} +0 -0
  194. /package/dist/{getEntryOptions.d.ts → types/getEntryOptions.d.ts} +0 -0
  195. /package/dist/{getPackageManager.d.ts → types/getPackageManager.d.ts} +0 -0
  196. /package/dist/{getPort.d.ts → types/getPort.d.ts} +0 -0
  197. /package/dist/{getServerConfig.d.ts → types/getServerConfig.d.ts} +0 -0
  198. /package/dist/{getTargetDir.d.ts → types/getTargetDir.d.ts} +0 -0
  199. /package/dist/{import.d.ts → types/import.d.ts} +0 -0
  200. /package/dist/{index.d.ts → types/index.d.ts} +0 -0
  201. /package/dist/{is → types/is}/index.d.ts +0 -0
  202. /package/dist/{is → types/is}/nodeEnv.d.ts +0 -0
  203. /package/dist/{is → types/is}/platform.d.ts +0 -0
  204. /package/dist/{is → types/is}/type.d.ts +0 -0
  205. /package/dist/{monorepo.d.ts → types/monorepo.d.ts} +0 -0
  206. /package/dist/{nodeEnv.d.ts → types/nodeEnv.d.ts} +0 -0
  207. /package/dist/{path.d.ts → types/path.d.ts} +0 -0
  208. /package/dist/{pathSerializer.d.ts → types/pathSerializer.d.ts} +0 -0
  209. /package/dist/{plugin.d.ts → types/plugin.d.ts} +0 -0
  210. /package/dist/{prettyInstructions.d.ts → types/prettyInstructions.d.ts} +0 -0
  211. /package/dist/{printBuildError.d.ts → types/printBuildError.d.ts} +0 -0
  212. /package/dist/{react.d.ts → types/react.d.ts} +0 -0
  213. /package/dist/{readTsConfig.d.ts → types/readTsConfig.d.ts} +0 -0
  214. /package/dist/{removeSlash.d.ts → types/removeSlash.d.ts} +0 -0
  215. /package/dist/{resolve.d.ts → types/resolve.d.ts} +0 -0
  216. /package/dist/{routes.d.ts → types/routes.d.ts} +0 -0
  217. /package/dist/{runtimeExports.d.ts → types/runtimeExports.d.ts} +0 -0
  218. /package/dist/{ssr.d.ts → types/ssr.d.ts} +0 -0
  219. /package/dist/{storage.d.ts → types/storage.d.ts} +0 -0
  220. /package/dist/{testUtils.d.ts → types/testUtils.d.ts} +0 -0
  221. /package/dist/{types.d.ts → types/types.d.ts} +0 -0
  222. /package/dist/{universal → types/universal}/constants.d.ts +0 -0
  223. /package/dist/{universal → types/universal}/formatWebpack.d.ts +0 -0
  224. /package/dist/{universal → types/universal}/nestedRoutes.d.ts +0 -0
  225. /package/dist/{universal → types/universal}/remixRouter.d.ts +0 -0
  226. /package/dist/{universal → types/universal}/serialize.d.ts +0 -0
  227. /package/dist/{version.d.ts → types/version.d.ts} +0 -0
  228. /package/dist/{wait.d.ts → types/wait.d.ts} +0 -0
  229. /package/dist/{watch.d.ts → types/watch.d.ts} +0 -0
@@ -0,0 +1,16 @@
1
+ var getNodeEnv = function() {
2
+ return process.env.NODE_ENV || "development";
3
+ };
4
+ var isDev = function() {
5
+ return getNodeEnv() === "development";
6
+ };
7
+ var isProd = function() {
8
+ return getNodeEnv() === "production";
9
+ };
10
+ var isTest = function() {
11
+ return getNodeEnv() === "test";
12
+ };
13
+ var isProdProfile = function() {
14
+ return isProd() && process.argv.includes("--profile");
15
+ };
16
+ export { getNodeEnv, isDev, isProd, isProdProfile, isTest };
@@ -0,0 +1,7 @@
1
+ var isNodeJS = function() {
2
+ return typeof process !== "undefined" && process.versions != null && process.versions.node != null && process.versions.electron == null;
3
+ };
4
+ var isBrowser = function() {
5
+ return typeof window !== "undefined";
6
+ };
7
+ export { isBrowser, isNodeJS };
@@ -0,0 +1,25 @@
1
+ function isString(str) {
2
+ return typeof str === "string";
3
+ }
4
+ function isUndefined(obj) {
5
+ return typeof obj === "undefined";
6
+ }
7
+ function isArray(obj) {
8
+ return Array.isArray(obj);
9
+ }
10
+ function isFunction(func) {
11
+ return typeof func === "function";
12
+ }
13
+ function isObject(obj) {
14
+ return obj !== null && typeof obj === "object";
15
+ }
16
+ function isPlainObject(obj) {
17
+ return isObject(obj) && Object.prototype.toString.call(obj) === "[object Object]";
18
+ }
19
+ function isPromise(obj) {
20
+ return Boolean(obj) && (typeof obj === "object" || typeof obj === "function") && typeof obj.then === "function";
21
+ }
22
+ function isRegExp(obj) {
23
+ return Object.prototype.toString.call(obj) === "[object RegExp]";
24
+ }
25
+ export { isArray, isFunction, isObject, isPlainObject, isPromise, isRegExp, isString, isUndefined };
@@ -0,0 +1,207 @@
1
+ function _arrayLikeToArray(arr, len) {
2
+ if (len == null || len > arr.length) len = arr.length;
3
+ for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
4
+ return arr2;
5
+ }
6
+ function _arrayWithHoles(arr) {
7
+ if (Array.isArray(arr)) return arr;
8
+ }
9
+ function _arrayWithoutHoles(arr) {
10
+ if (Array.isArray(arr)) return _arrayLikeToArray(arr);
11
+ }
12
+ function _classCallCheck(instance, Constructor) {
13
+ if (!(instance instanceof Constructor)) {
14
+ throw new TypeError("Cannot call a class as a function");
15
+ }
16
+ }
17
+ function _defineProperties(target, props) {
18
+ for(var i = 0; i < props.length; i++){
19
+ var descriptor = props[i];
20
+ descriptor.enumerable = descriptor.enumerable || false;
21
+ descriptor.configurable = true;
22
+ if ("value" in descriptor) descriptor.writable = true;
23
+ Object.defineProperty(target, descriptor.key, descriptor);
24
+ }
25
+ }
26
+ function _createClass(Constructor, protoProps, staticProps) {
27
+ if (protoProps) _defineProperties(Constructor.prototype, protoProps);
28
+ if (staticProps) _defineProperties(Constructor, staticProps);
29
+ return Constructor;
30
+ }
31
+ function _defineProperty(obj, key, value) {
32
+ if (key in obj) {
33
+ Object.defineProperty(obj, key, {
34
+ value: value,
35
+ enumerable: true,
36
+ configurable: true,
37
+ writable: true
38
+ });
39
+ } else {
40
+ obj[key] = value;
41
+ }
42
+ return obj;
43
+ }
44
+ function _instanceof(left, right) {
45
+ if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
46
+ return !!right[Symbol.hasInstance](left);
47
+ } else {
48
+ return left instanceof right;
49
+ }
50
+ }
51
+ function _iterableToArray(iter) {
52
+ if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
53
+ }
54
+ function _nonIterableRest() {
55
+ throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
56
+ }
57
+ function _nonIterableSpread() {
58
+ throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
59
+ }
60
+ function _objectSpread(target) {
61
+ for(var i = 1; i < arguments.length; i++){
62
+ var source = arguments[i] != null ? arguments[i] : {};
63
+ var ownKeys = Object.keys(source);
64
+ if (typeof Object.getOwnPropertySymbols === "function") {
65
+ ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
66
+ return Object.getOwnPropertyDescriptor(source, sym).enumerable;
67
+ }));
68
+ }
69
+ ownKeys.forEach(function(key) {
70
+ _defineProperty(target, key, source[key]);
71
+ });
72
+ }
73
+ return target;
74
+ }
75
+ function _toArray(arr) {
76
+ return _arrayWithHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableRest();
77
+ }
78
+ function _toConsumableArray(arr) {
79
+ return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
80
+ }
81
+ function _unsupportedIterableToArray(o, minLen) {
82
+ if (!o) return;
83
+ if (typeof o === "string") return _arrayLikeToArray(o, minLen);
84
+ var n = Object.prototype.toString.call(o).slice(8, -1);
85
+ if (n === "Object" && o.constructor) n = o.constructor.name;
86
+ if (n === "Map" || n === "Set") return Array.from(n);
87
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
88
+ }
89
+ import chalk from "../compiled/chalk";
90
+ var LOG_LEVEL = {
91
+ error: 0,
92
+ warn: 1,
93
+ info: 2,
94
+ debug: 3,
95
+ log: 4
96
+ };
97
+ var LOG_TYPES = {
98
+ error: {
99
+ color: "red",
100
+ label: "error",
101
+ level: "error"
102
+ },
103
+ info: {
104
+ color: "cyan",
105
+ label: "info",
106
+ level: "info"
107
+ },
108
+ success: {
109
+ color: "green",
110
+ label: "Success",
111
+ level: "info"
112
+ },
113
+ warn: {
114
+ color: "yellow",
115
+ label: "warn",
116
+ level: "warn"
117
+ },
118
+ debug: {
119
+ color: "red",
120
+ label: "debug",
121
+ level: "debug"
122
+ },
123
+ log: {
124
+ level: "log"
125
+ }
126
+ };
127
+ var DEFAULT_CONFIG = {
128
+ displayLabel: true,
129
+ uppercaseLabel: false
130
+ };
131
+ var Logger = /*#__PURE__*/ function() {
132
+ "use strict";
133
+ function Logger() {
134
+ var options = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
135
+ var _this = this;
136
+ _classCallCheck(this, Logger);
137
+ _defineProperty(this, "level", void 0);
138
+ _defineProperty(this, "config", void 0);
139
+ _defineProperty(this, "types", void 0);
140
+ _defineProperty(this, "longestLabel", void 0);
141
+ this.level = options.level || LOG_TYPES.log.level;
142
+ this.config = _objectSpread({}, DEFAULT_CONFIG, options.config || {});
143
+ this.types = _objectSpread({}, LOG_TYPES, options.types || {});
144
+ this.longestLabel = this.getLongestLabel();
145
+ Object.keys(this.types).forEach(function(type) {
146
+ _this[type] = _this._log.bind(_this, type);
147
+ });
148
+ }
149
+ _createClass(Logger, [
150
+ {
151
+ key: "_log",
152
+ value: function _log(type, message) {
153
+ for(var _len = arguments.length, args = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++){
154
+ args[_key - 2] = arguments[_key];
155
+ }
156
+ var _console;
157
+ if (message === void 0 || message === null) {
158
+ console.log();
159
+ return;
160
+ }
161
+ if (LOG_LEVEL[type] > LOG_LEVEL[this.level]) {
162
+ return;
163
+ }
164
+ var label = "";
165
+ var text = "";
166
+ var logType = this.types[type];
167
+ if (this.config.displayLabel && logType.label) {
168
+ label = this.config.uppercaseLabel ? logType.label.toUpperCase() : logType.label;
169
+ label = label.padEnd(this.longestLabel.length);
170
+ label = chalk.bold(logType.color ? chalk[logType.color](label) : label);
171
+ }
172
+ if (_instanceof(message, Error)) {
173
+ if (message.stack) {
174
+ var _message_stack_split = _toArray(message.stack.split("\n")), name = _message_stack_split[0], rest = _message_stack_split.slice(1);
175
+ text = "".concat(name, "\n").concat(chalk.grey(rest.join("\n")));
176
+ } else {
177
+ text = message.message;
178
+ }
179
+ } else {
180
+ text = "".concat(message);
181
+ }
182
+ var log = label.length > 0 ? "".concat(label, " ").concat(text) : text;
183
+ (_console = console).log.apply(_console, [
184
+ log
185
+ ].concat(_toConsumableArray(args)));
186
+ }
187
+ },
188
+ {
189
+ key: "getLongestLabel",
190
+ value: function getLongestLabel() {
191
+ var _this = this;
192
+ var longestLabel = "";
193
+ Object.keys(this.types).forEach(function(type) {
194
+ var _this_types_type = _this.types[type], _this_types_type_label = _this_types_type.label, label = _this_types_type_label === void 0 ? "" : _this_types_type_label;
195
+ if (label.length > longestLabel.length) {
196
+ longestLabel = label;
197
+ }
198
+ });
199
+ return longestLabel;
200
+ }
201
+ }
202
+ ]);
203
+ return Logger;
204
+ }();
205
+ var logger = new Logger();
206
+ logger.Logger = Logger;
207
+ export { Logger, logger };
@@ -0,0 +1,109 @@
1
+ function _defineProperty(obj, key, value) {
2
+ if (key in obj) {
3
+ Object.defineProperty(obj, key, {
4
+ value: value,
5
+ enumerable: true,
6
+ configurable: true,
7
+ writable: true
8
+ });
9
+ } else {
10
+ obj[key] = value;
11
+ }
12
+ return obj;
13
+ }
14
+ function _objectSpread(target) {
15
+ for(var i = 1; i < arguments.length; i++){
16
+ var source = arguments[i] != null ? arguments[i] : {};
17
+ var ownKeys = Object.keys(source);
18
+ if (typeof Object.getOwnPropertySymbols === "function") {
19
+ ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
20
+ return Object.getOwnPropertyDescriptor(source, sym).enumerable;
21
+ }));
22
+ }
23
+ ownKeys.forEach(function(key) {
24
+ _defineProperty(target, key, source[key]);
25
+ });
26
+ }
27
+ return target;
28
+ }
29
+ import fs from "fs";
30
+ import path from "path";
31
+ import { glob, yaml } from "./compiled";
32
+ var PACKAGE_MAX_DEPTH = 5;
33
+ var WORKSPACE_FILES = {
34
+ YARN: "package.json",
35
+ PNPM: "pnpm-workspace.yaml",
36
+ LERNA: "lerna.json"
37
+ };
38
+ var isLerna = function(root) {
39
+ return fs.existsSync(path.join(root, WORKSPACE_FILES.LERNA));
40
+ };
41
+ var isYarnWorkspaces = function(root) {
42
+ var _json_workspaces;
43
+ var pkg = path.join(root, WORKSPACE_FILES.YARN);
44
+ if (!fs.existsSync(pkg)) {
45
+ return false;
46
+ }
47
+ var json = JSON.parse(fs.readFileSync(pkg, "utf8"));
48
+ return Boolean((_json_workspaces = json.workspaces) === null || _json_workspaces === void 0 ? void 0 : _json_workspaces.packages);
49
+ };
50
+ var isPnpmWorkspaces = function(root) {
51
+ return fs.existsSync(path.join(root, WORKSPACE_FILES.PNPM));
52
+ };
53
+ var isMonorepo = function(root) {
54
+ return isLerna(root) || isYarnWorkspaces(root) || isPnpmWorkspaces(root);
55
+ };
56
+ var isModernjsMonorepo = function(root) {
57
+ var pkgJsonPath = path.join(root, "package.json");
58
+ if (!fs.existsSync(pkgJsonPath)) {
59
+ return false;
60
+ }
61
+ var json = JSON.parse(fs.readFileSync(pkgJsonPath, "utf8"));
62
+ var deps = _objectSpread({}, json.dependencies || {}, json.devDependencies || {});
63
+ return Boolean(deps["@modern-js/monorepo-tools"]);
64
+ };
65
+ var findMonorepoRoot = function(appDirectory) {
66
+ var maxDepth = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : PACKAGE_MAX_DEPTH;
67
+ var inMonorepo = false;
68
+ for(var depth = 0; depth < maxDepth; depth++){
69
+ if (isMonorepo(appDirectory)) {
70
+ inMonorepo = true;
71
+ break;
72
+ }
73
+ appDirectory = path.dirname(appDirectory);
74
+ }
75
+ return inMonorepo ? appDirectory : void 0;
76
+ };
77
+ var getMonorepoPackages = function(root) {
78
+ var packages = [];
79
+ if (isYarnWorkspaces(root)) {
80
+ var json = JSON.parse(fs.readFileSync(path.join(root, "package.json"), "utf8"));
81
+ packages = json.workspaces.packages;
82
+ } else if (isLerna(root)) {
83
+ var json1 = JSON.parse(fs.readFileSync(path.resolve(root, "lerna.json"), "utf8"));
84
+ packages = json1.packages;
85
+ } else {
86
+ packages = yaml.load(fs.readFileSync(path.join(root, WORKSPACE_FILES.PNPM), "utf8")).packages;
87
+ }
88
+ if (packages) {
89
+ return packages.map(function(name) {
90
+ return(// The trailing / ensures only dirs are picked up
91
+ glob.sync(path.join(root, "".concat(name, "/")), {
92
+ ignore: [
93
+ "**/node_modules/**"
94
+ ]
95
+ }));
96
+ }).reduce(function(acc, val) {
97
+ return acc.concat(val);
98
+ }, []).filter(function(filepath) {
99
+ return fs.existsSync(path.resolve(filepath, "package.json"));
100
+ }).map(function(filepath) {
101
+ return {
102
+ path: filepath,
103
+ name: JSON.parse(fs.readFileSync(path.resolve(filepath, "package.json"), "utf8")).name
104
+ };
105
+ });
106
+ }
107
+ return [];
108
+ };
109
+ export { findMonorepoRoot, getMonorepoPackages, isLerna, isModernjsMonorepo, isMonorepo, isPnpmWorkspaces, isYarnWorkspaces };
@@ -0,0 +1,258 @@
1
+ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
2
+ try {
3
+ var info = gen[key](arg);
4
+ var value = info.value;
5
+ } catch (error) {
6
+ reject(error);
7
+ return;
8
+ }
9
+ if (info.done) {
10
+ resolve(value);
11
+ } else {
12
+ Promise.resolve(value).then(_next, _throw);
13
+ }
14
+ }
15
+ function _asyncToGenerator(fn) {
16
+ return function() {
17
+ var self = this, args = arguments;
18
+ return new Promise(function(resolve, reject) {
19
+ var gen = fn.apply(self, args);
20
+ function _next(value) {
21
+ asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
22
+ }
23
+ function _throw(err) {
24
+ asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
25
+ }
26
+ _next(undefined);
27
+ });
28
+ };
29
+ }
30
+ var __generator = this && this.__generator || function(thisArg, body) {
31
+ var f, y, t, g, _ = {
32
+ label: 0,
33
+ sent: function() {
34
+ if (t[0] & 1) throw t[1];
35
+ return t[1];
36
+ },
37
+ trys: [],
38
+ ops: []
39
+ };
40
+ return g = {
41
+ next: verb(0),
42
+ "throw": verb(1),
43
+ "return": verb(2)
44
+ }, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
45
+ return this;
46
+ }), g;
47
+ function verb(n) {
48
+ return function(v) {
49
+ return step([
50
+ n,
51
+ v
52
+ ]);
53
+ };
54
+ }
55
+ function step(op) {
56
+ if (f) throw new TypeError("Generator is already executing.");
57
+ while(_)try {
58
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
59
+ if (y = 0, t) op = [
60
+ op[0] & 2,
61
+ t.value
62
+ ];
63
+ switch(op[0]){
64
+ case 0:
65
+ case 1:
66
+ t = op;
67
+ break;
68
+ case 4:
69
+ _.label++;
70
+ return {
71
+ value: op[1],
72
+ done: false
73
+ };
74
+ case 5:
75
+ _.label++;
76
+ y = op[1];
77
+ op = [
78
+ 0
79
+ ];
80
+ continue;
81
+ case 7:
82
+ op = _.ops.pop();
83
+ _.trys.pop();
84
+ continue;
85
+ default:
86
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
87
+ _ = 0;
88
+ continue;
89
+ }
90
+ if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
91
+ _.label = op[1];
92
+ break;
93
+ }
94
+ if (op[0] === 6 && _.label < t[1]) {
95
+ _.label = t[1];
96
+ t = op;
97
+ break;
98
+ }
99
+ if (t && _.label < t[2]) {
100
+ _.label = t[2];
101
+ _.ops.push(op);
102
+ break;
103
+ }
104
+ if (t[2]) _.ops.pop();
105
+ _.trys.pop();
106
+ continue;
107
+ }
108
+ op = body.call(thisArg, _);
109
+ } catch (e) {
110
+ op = [
111
+ 6,
112
+ e
113
+ ];
114
+ y = 0;
115
+ } finally{
116
+ f = t = 0;
117
+ }
118
+ if (op[0] & 5) throw op[1];
119
+ return {
120
+ value: op[0] ? op[1] : void 0,
121
+ done: true
122
+ };
123
+ }
124
+ };
125
+ import { execa } from "./compiled";
126
+ function canUseNpm() {
127
+ return _canUseNpm.apply(this, arguments);
128
+ }
129
+ function _canUseNpm() {
130
+ _canUseNpm = _asyncToGenerator(function() {
131
+ var e;
132
+ return __generator(this, function(_state) {
133
+ switch(_state.label){
134
+ case 0:
135
+ _state.trys.push([
136
+ 0,
137
+ 2,
138
+ ,
139
+ 3
140
+ ]);
141
+ return [
142
+ 4,
143
+ execa("npm", [
144
+ "--version"
145
+ ], {
146
+ env: process.env
147
+ })
148
+ ];
149
+ case 1:
150
+ _state.sent();
151
+ return [
152
+ 2,
153
+ true
154
+ ];
155
+ case 2:
156
+ e = _state.sent();
157
+ return [
158
+ 2,
159
+ false
160
+ ];
161
+ case 3:
162
+ return [
163
+ 2
164
+ ];
165
+ }
166
+ });
167
+ });
168
+ return _canUseNpm.apply(this, arguments);
169
+ }
170
+ function canUseYarn() {
171
+ return _canUseYarn.apply(this, arguments);
172
+ }
173
+ function _canUseYarn() {
174
+ _canUseYarn = _asyncToGenerator(function() {
175
+ var e;
176
+ return __generator(this, function(_state) {
177
+ switch(_state.label){
178
+ case 0:
179
+ _state.trys.push([
180
+ 0,
181
+ 2,
182
+ ,
183
+ 3
184
+ ]);
185
+ return [
186
+ 4,
187
+ execa("yarn", [
188
+ "--version"
189
+ ], {
190
+ env: process.env
191
+ })
192
+ ];
193
+ case 1:
194
+ _state.sent();
195
+ return [
196
+ 2,
197
+ true
198
+ ];
199
+ case 2:
200
+ e = _state.sent();
201
+ return [
202
+ 2,
203
+ false
204
+ ];
205
+ case 3:
206
+ return [
207
+ 2
208
+ ];
209
+ }
210
+ });
211
+ });
212
+ return _canUseYarn.apply(this, arguments);
213
+ }
214
+ function canUsePnpm() {
215
+ return _canUsePnpm.apply(this, arguments);
216
+ }
217
+ function _canUsePnpm() {
218
+ _canUsePnpm = _asyncToGenerator(function() {
219
+ var e;
220
+ return __generator(this, function(_state) {
221
+ switch(_state.label){
222
+ case 0:
223
+ _state.trys.push([
224
+ 0,
225
+ 2,
226
+ ,
227
+ 3
228
+ ]);
229
+ return [
230
+ 4,
231
+ execa("pnpm", [
232
+ "--version"
233
+ ], {
234
+ env: process.env
235
+ })
236
+ ];
237
+ case 1:
238
+ _state.sent();
239
+ return [
240
+ 2,
241
+ true
242
+ ];
243
+ case 2:
244
+ e = _state.sent();
245
+ return [
246
+ 2,
247
+ false
248
+ ];
249
+ case 3:
250
+ return [
251
+ 2
252
+ ];
253
+ }
254
+ });
255
+ });
256
+ return _canUsePnpm.apply(this, arguments);
257
+ }
258
+ export { canUseNpm, canUsePnpm, canUseYarn };