balm-core 3.20.1 → 3.23.0

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.
Files changed (73) hide show
  1. package/README.md +9 -16
  2. package/lib/bundler/esbuild/transform.js +5 -3
  3. package/lib/bundler/rollup/index.js +5 -3
  4. package/lib/config/globals.js +1 -1
  5. package/lib/config/scripts.js +3 -3
  6. package/lib/plugins/replace.js +2 -2
  7. package/lib/plugins/sass.js +88 -78
  8. package/lib/tasks/private/build.js +3 -1
  9. package/lib/tasks/private/cache.js +3 -1
  10. package/lib/tasks/private/extra.js +3 -1
  11. package/lib/tasks/private/font.js +3 -1
  12. package/lib/tasks/private/image.js +3 -1
  13. package/lib/tasks/private/lint.js +3 -1
  14. package/lib/tasks/private/media.js +3 -1
  15. package/lib/tasks/private/modernizr.js +3 -1
  16. package/lib/tasks/private/start.js +3 -1
  17. package/lib/tasks/private/workbox-sw.js +3 -1
  18. package/lib/tasks/public/sass.js +2 -1
  19. package/lib/tasks/public/webpack.js +14 -11
  20. package/lib/utilities/loading.js +3 -1
  21. package/package.json +22 -22
  22. package/tslib/balm.js +6 -6
  23. package/tslib/bootstrap/index.js +1 -1
  24. package/tslib/bundler/esbuild/index.js +2 -2
  25. package/tslib/bundler/esbuild/transform.js +2 -2
  26. package/tslib/bundler/rollup/index.js +4 -4
  27. package/tslib/bundler/webpack/config/common.js +1 -1
  28. package/tslib/bundler/webpack/config/dev.js +2 -2
  29. package/tslib/bundler/webpack/config/index.js +2 -2
  30. package/tslib/bundler/webpack/config/prod.js +2 -2
  31. package/tslib/bundler/webpack/index.js +4 -4
  32. package/tslib/bundler/webpack/loaders.js +2 -2
  33. package/tslib/config/globals.js +4 -4
  34. package/tslib/config/index.js +13 -13
  35. package/tslib/config/scripts.js +3 -3
  36. package/tslib/config/version.js +1 -1
  37. package/tslib/hello.js +1 -1
  38. package/tslib/hooks/index.js +1 -1
  39. package/tslib/index.js +2 -2
  40. package/tslib/middlewares/index.js +3 -3
  41. package/tslib/plugins/imagemin.js +1 -1
  42. package/tslib/plugins/index.js +11 -11
  43. package/tslib/plugins/less.js +3 -3
  44. package/tslib/plugins/postcss.js +1 -1
  45. package/tslib/plugins/replace.js +1 -1
  46. package/tslib/plugins/sass.js +52 -55
  47. package/tslib/plugins/sftp.js +1 -1
  48. package/tslib/tasks/foundation/balm_style.js +1 -1
  49. package/tslib/tasks/foundation/index.js +2 -2
  50. package/tslib/tasks/index.js +3 -3
  51. package/tslib/tasks/private/clean.js +2 -2
  52. package/tslib/tasks/private/modernizr.js +4 -4
  53. package/tslib/tasks/private/sprite.js +4 -4
  54. package/tslib/tasks/public/esbuild.js +1 -1
  55. package/tslib/tasks/public/html.js +5 -5
  56. package/tslib/tasks/public/publish.js +3 -3
  57. package/tslib/tasks/public/remove.js +1 -1
  58. package/tslib/tasks/public/rollup.js +1 -1
  59. package/tslib/tasks/public/sass.js +2 -1
  60. package/tslib/tasks/public/server.js +9 -9
  61. package/tslib/tasks/public/url.js +2 -2
  62. package/tslib/tasks/public/webpack.js +17 -8
  63. package/tslib/utilities/address.js +1 -1
  64. package/tslib/utilities/cache-core.js +3 -3
  65. package/tslib/utilities/color.js +1 -1
  66. package/tslib/utilities/compiling.js +4 -4
  67. package/tslib/utilities/detect-port.js +2 -2
  68. package/tslib/utilities/file.js +2 -2
  69. package/tslib/utilities/index.js +4 -4
  70. package/tslib/utilities/loading.js +8 -8
  71. package/tslib/utilities/logger.js +8 -8
  72. package/tslib/utilities/replacestream.js +1 -1
  73. package/tslib/utilities/utils.js +1 -1
@@ -2,9 +2,9 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  require("./foundation");
5
- const require_dir_1 = (0, tslib_1.__importDefault)(require("require-dir"));
6
- const default_1 = (0, tslib_1.__importDefault)(require("./default"));
7
- const hooks_1 = (0, tslib_1.__importDefault)(require("../hooks"));
5
+ const require_dir_1 = tslib_1.__importDefault(require("require-dir"));
6
+ const default_1 = tslib_1.__importDefault(require("./default"));
7
+ const hooks_1 = tslib_1.__importDefault(require("../hooks"));
8
8
  const PRIVATE_TASKS = (0, require_dir_1.default)('./private');
9
9
  const PUBLIC_TASKS = (0, require_dir_1.default)('./public');
10
10
  function registerTasks(recipe) {
@@ -52,7 +52,7 @@ class CleanTask extends BalmJS.BalmTask {
52
52
  get remoteAppDir() {
53
53
  return BalmJS.config.assets.subDir
54
54
  ? [BalmJS.config.assets.static]
55
- : (0, tslib_1.__classPrivateFieldGet)(this, _CleanTask_getAssetsDir, "f").call(this);
55
+ : tslib_1.__classPrivateFieldGet(this, _CleanTask_getAssetsDir, "f").call(this);
56
56
  }
57
57
  get dirInFrontend() {
58
58
  const isLocal = !path.isAbsolute(BalmJS.config.assets.root);
@@ -76,7 +76,7 @@ class CleanTask extends BalmJS.BalmTask {
76
76
  return [
77
77
  ...(BalmJS.config.env.isProd && hasBuildDir
78
78
  ? buildDirInProd
79
- : [...buildDirInDev, ...(0, tslib_1.__classPrivateFieldGet)(this, _CleanTask_getAssetsDir, "f").call(this, 'dest')])
79
+ : [...buildDirInDev, ...tslib_1.__classPrivateFieldGet(this, _CleanTask_getAssetsDir, "f").call(this, 'dest')])
80
80
  ];
81
81
  }
82
82
  }
@@ -2,7 +2,7 @@
2
2
  var _ModernizrTask_readConfig, _ModernizrTask_createDir, _ModernizrTask_generateScript;
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const tslib_1 = require("tslib");
5
- const fs_1 = (0, tslib_1.__importDefault)(require("fs"));
5
+ const fs_1 = tslib_1.__importDefault(require("fs"));
6
6
  class ModernizrTask extends BalmJS.BalmTask {
7
7
  constructor() {
8
8
  super('modernizr');
@@ -39,10 +39,10 @@ class ModernizrTask extends BalmJS.BalmTask {
39
39
  this.init();
40
40
  if (fs_1.default.existsSync(this.input)) {
41
41
  const [config] = await Promise.all([
42
- (0, tslib_1.__classPrivateFieldGet)(this, _ModernizrTask_readConfig, "f").call(this),
43
- (0, tslib_1.__classPrivateFieldGet)(this, _ModernizrTask_createDir, "f").call(this)
42
+ tslib_1.__classPrivateFieldGet(this, _ModernizrTask_readConfig, "f").call(this),
43
+ tslib_1.__classPrivateFieldGet(this, _ModernizrTask_createDir, "f").call(this)
44
44
  ]);
45
- await (0, tslib_1.__classPrivateFieldGet)(this, _ModernizrTask_generateScript, "f").call(this, config);
45
+ await tslib_1.__classPrivateFieldGet(this, _ModernizrTask_generateScript, "f").call(this, config);
46
46
  }
47
47
  else {
48
48
  BalmJS.logger.warn(`${this.name} task`, `The '${this.input}' does not exist`, {
@@ -2,7 +2,7 @@
2
2
  var _SpriteTask_tasks, _SpriteTask_getParams;
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const tslib_1 = require("tslib");
5
- const merge_stream_1 = (0, tslib_1.__importDefault)(require("../../utilities/merge-stream"));
5
+ const merge_stream_1 = tslib_1.__importDefault(require("../../utilities/merge-stream"));
6
6
  class SpriteTask extends BalmJS.BalmTask {
7
7
  constructor() {
8
8
  super('sprite');
@@ -66,7 +66,7 @@ class SpriteTask extends BalmJS.BalmTask {
66
66
  BalmJS.logger.debug(`${this.name} task`, spriteConfig, {
67
67
  pre: true
68
68
  });
69
- spriteConfig.params = (0, tslib_1.__classPrivateFieldGet)(this, _SpriteTask_getParams, "f").call(this, spriteItem, spriteOptions);
69
+ spriteConfig.params = tslib_1.__classPrivateFieldGet(this, _SpriteTask_getParams, "f").call(this, spriteItem, spriteOptions);
70
70
  gulp.task(BalmJS.toNamespace(spriteTaskName), () => {
71
71
  const spriteData = gulp
72
72
  .src(spriteConfig.input)
@@ -78,7 +78,7 @@ class SpriteTask extends BalmJS.BalmTask {
78
78
  const cssStream = spriteData.css.pipe(gulp.dest(spriteConfig.cssOutput));
79
79
  return (0, merge_stream_1.default)(imgStream, cssStream);
80
80
  });
81
- (0, tslib_1.__classPrivateFieldGet)(this, _SpriteTask_tasks, "f").push(spriteTaskName);
81
+ tslib_1.__classPrivateFieldGet(this, _SpriteTask_tasks, "f").push(spriteTaskName);
82
82
  }
83
83
  }
84
84
  recipe(input, output, spriteOptions = {}) {
@@ -91,7 +91,7 @@ class SpriteTask extends BalmJS.BalmTask {
91
91
  }
92
92
  }
93
93
  get deps() {
94
- return (0, tslib_1.__classPrivateFieldGet)(this, _SpriteTask_tasks, "f");
94
+ return tslib_1.__classPrivateFieldGet(this, _SpriteTask_tasks, "f");
95
95
  }
96
96
  }
97
97
  _SpriteTask_tasks = new WeakMap(), _SpriteTask_getParams = new WeakMap();
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- const esbuild_1 = (0, tslib_1.__importDefault)(require("../../bundler/esbuild"));
4
+ const esbuild_1 = tslib_1.__importDefault(require("../../bundler/esbuild"));
5
5
  class EsbuildTask extends BalmJS.BalmTask {
6
6
  constructor() {
7
7
  super('esbuild');
@@ -48,9 +48,9 @@ class HtmlTask extends BalmJS.BalmTask {
48
48
  ['css', 'js', 'img', 'media', 'manifest'].forEach((type) => {
49
49
  const canUpdate = type === 'manifest'
50
50
  ? BalmJS.config.pwa.enabled
51
- : (0, tslib_1.__classPrivateFieldGet)(this, _HtmlTask_hasSourcePath, "f").call(this, type);
51
+ : tslib_1.__classPrivateFieldGet(this, _HtmlTask_hasSourcePath, "f").call(this, type);
52
52
  if (canUpdate) {
53
- stream = stream.pipe((0, tslib_1.__classPrivateFieldGet)(this, _HtmlTask_updateAssetsPath, "f").call(this, type));
53
+ stream = stream.pipe(tslib_1.__classPrivateFieldGet(this, _HtmlTask_updateAssetsPath, "f").call(this, type));
54
54
  }
55
55
  });
56
56
  stream = BalmJS.config.assets.cache
@@ -60,10 +60,10 @@ class HtmlTask extends BalmJS.BalmTask {
60
60
  else {
61
61
  ['css', 'js', 'img', 'media'].forEach((type, index) => {
62
62
  const canUpdate = index > 1
63
- ? (0, tslib_1.__classPrivateFieldGet)(this, _HtmlTask_hasSourcePath, "f").call(this, type) && !BalmJS.config.inFrontend
64
- : (0, tslib_1.__classPrivateFieldGet)(this, _HtmlTask_hasSourcePath, "f").call(this, type);
63
+ ? tslib_1.__classPrivateFieldGet(this, _HtmlTask_hasSourcePath, "f").call(this, type) && !BalmJS.config.inFrontend
64
+ : tslib_1.__classPrivateFieldGet(this, _HtmlTask_hasSourcePath, "f").call(this, type);
65
65
  if (canUpdate) {
66
- stream = stream.pipe((0, tslib_1.__classPrivateFieldGet)(this, _HtmlTask_updateAssetsPath, "f").call(this, type));
66
+ stream = stream.pipe(tslib_1.__classPrivateFieldGet(this, _HtmlTask_updateAssetsPath, "f").call(this, type));
67
67
  }
68
68
  });
69
69
  stream = stream.pipe(BalmJS.file.setPublicPath());
@@ -2,7 +2,7 @@
2
2
  var _PublishTask_release;
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const tslib_1 = require("tslib");
5
- const merge_stream_1 = (0, tslib_1.__importDefault)(require("../../utilities/merge-stream"));
5
+ const merge_stream_1 = tslib_1.__importDefault(require("../../utilities/merge-stream"));
6
6
  class PublishTask extends BalmJS.BalmTask {
7
7
  constructor() {
8
8
  super('publish');
@@ -27,11 +27,11 @@ class PublishTask extends BalmJS.BalmTask {
27
27
  const balmPublish = (callback) => {
28
28
  if (BalmJS.config.env.isProd) {
29
29
  if (BalmJS.utils.isArray(input)) {
30
- const tasks = input.map((template) => (0, tslib_1.__classPrivateFieldGet)(this, _PublishTask_release, "f").call(this, template.input, template.output, template.renameOptions));
30
+ const tasks = input.map((template) => tslib_1.__classPrivateFieldGet(this, _PublishTask_release, "f").call(this, template.input, template.output, template.renameOptions));
31
31
  return (0, merge_stream_1.default)(...tasks);
32
32
  }
33
33
  else {
34
- return (0, tslib_1.__classPrivateFieldGet)(this, _PublishTask_release, "f").call(this, input, output, renameOptions);
34
+ return tslib_1.__classPrivateFieldGet(this, _PublishTask_release, "f").call(this, input, output, renameOptions);
35
35
  }
36
36
  }
37
37
  else {
@@ -18,7 +18,7 @@ class RemoveTask extends BalmJS.BalmTask {
18
18
  const canDel = !!((BalmJS.utils.isString(input) && input.trim()) ||
19
19
  (BalmJS.utils.isArray(input) && input.length));
20
20
  if (canDel) {
21
- const files = (0, tslib_1.__classPrivateFieldGet)(this, _RemoveTask_getFiles, "f").call(this, input);
21
+ const files = tslib_1.__classPrivateFieldGet(this, _RemoveTask_getFiles, "f").call(this, input);
22
22
  BalmJS.logger.debug(`${this.name} task`, {
23
23
  files
24
24
  }, {
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- const rollup_1 = (0, tslib_1.__importDefault)(require("../../bundler/rollup"));
4
+ const rollup_1 = tslib_1.__importDefault(require("../../bundler/rollup"));
5
5
  class RollupTask extends BalmJS.BalmTask {
6
6
  constructor() {
7
7
  super('rollup');
@@ -7,7 +7,8 @@ class SassTask extends BalmJS.BalmStyleTask {
7
7
  get options() {
8
8
  return Object.assign({
9
9
  includePaths: BalmJS.file.stylePaths,
10
- outputStyle: 'expanded'
10
+ outputStyle: 'expanded',
11
+ quietDeps: BalmJS.config.logs.level < BalmJS.LogLevel.Warn
11
12
  }, BalmJS.config.styles.sassOptions, this.customOptions);
12
13
  }
13
14
  recipe(input, output, options = {}) {
@@ -2,8 +2,8 @@
2
2
  var _ServerTask_watchTask, _ServerTask_onWatch;
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const tslib_1 = require("tslib");
5
- const detect_port_1 = (0, tslib_1.__importDefault)(require("../../utilities/detect-port"));
6
- const middlewares_1 = (0, tslib_1.__importDefault)(require("../../middlewares"));
5
+ const detect_port_1 = tslib_1.__importDefault(require("../../utilities/detect-port"));
6
+ const middlewares_1 = tslib_1.__importDefault(require("../../middlewares"));
7
7
  class ServerTask extends BalmJS.BalmTask {
8
8
  constructor() {
9
9
  super('serve');
@@ -25,18 +25,18 @@ class ServerTask extends BalmJS.BalmTask {
25
25
  `${BalmJS.config.dest.font}/**/*`,
26
26
  ...BalmJS.config.server.extraWatchFiles
27
27
  ], watchOptions).on('change', server.reload);
28
- watch(`${BalmJS.file.templateBasePath}/*.html`, watchOptions, (0, tslib_1.__classPrivateFieldGet)(this, _ServerTask_watchTask, "f").call(this, 'html', true));
29
- watch(`${BalmJS.config.src.css}/**/*.${BalmJS.config.styles.extname}`, watchOptions, (0, tslib_1.__classPrivateFieldGet)(this, _ServerTask_watchTask, "f").call(this, BalmJS.config.inFrontend ? this.styleName : 'style'));
28
+ watch(`${BalmJS.file.templateBasePath}/*.html`, watchOptions, tslib_1.__classPrivateFieldGet(this, _ServerTask_watchTask, "f").call(this, 'html', true));
29
+ watch(`${BalmJS.config.src.css}/**/*.${BalmJS.config.styles.extname}`, watchOptions, tslib_1.__classPrivateFieldGet(this, _ServerTask_watchTask, "f").call(this, BalmJS.config.inFrontend ? this.styleName : 'style'));
30
30
  if (!BalmJS.config.server.useHMR) {
31
- watch(`${BalmJS.config.src.js}/**/*`, watchOptions, (0, tslib_1.__classPrivateFieldGet)(this, _ServerTask_watchTask, "f").call(this, BalmJS.config.scripts.bundler, true));
31
+ watch(`${BalmJS.config.src.js}/**/*`, watchOptions, tslib_1.__classPrivateFieldGet(this, _ServerTask_watchTask, "f").call(this, BalmJS.config.scripts.bundler, true));
32
32
  }
33
- watch(`${BalmJS.config.src.base}/modernizr.json`, watchOptions, (0, tslib_1.__classPrivateFieldGet)(this, _ServerTask_watchTask, "f").call(this, 'modernizr'));
34
- watch(`${BalmJS.config.src.font}/**/*`, watchOptions, (0, tslib_1.__classPrivateFieldGet)(this, _ServerTask_watchTask, "f").call(this, 'font'));
33
+ watch(`${BalmJS.config.src.base}/modernizr.json`, watchOptions, tslib_1.__classPrivateFieldGet(this, _ServerTask_watchTask, "f").call(this, 'modernizr'));
34
+ watch(`${BalmJS.config.src.font}/**/*`, watchOptions, tslib_1.__classPrivateFieldGet(this, _ServerTask_watchTask, "f").call(this, 'font'));
35
35
  if (BalmJS.config.ftp.watchFiles.length) {
36
36
  watch(BalmJS.config.ftp.watchFiles, watchOptions).on('change', (path) => {
37
37
  BalmJS.logger.debug(`${this.name} task`, `File ${path} was changed`);
38
38
  BalmJS.watchFtpFile = path;
39
- (0, tslib_1.__classPrivateFieldGet)(this, _ServerTask_watchTask, "f").call(this, 'ftp', true)();
39
+ tslib_1.__classPrivateFieldGet(this, _ServerTask_watchTask, "f").call(this, 'ftp', true)();
40
40
  });
41
41
  }
42
42
  });
@@ -104,7 +104,7 @@ class ServerTask extends BalmJS.BalmTask {
104
104
  if (BalmJS.config.env.isDev) {
105
105
  BalmJS.server = server.init(bsOptions);
106
106
  if (BalmJS.config.useDefaults) {
107
- (0, tslib_1.__classPrivateFieldGet)(this, _ServerTask_onWatch, "f").call(this);
107
+ tslib_1.__classPrivateFieldGet(this, _ServerTask_onWatch, "f").call(this);
108
108
  }
109
109
  else {
110
110
  BalmJS.watching = true;
@@ -26,8 +26,8 @@ class UrlTask extends BalmJS.BalmTask {
26
26
  const balmUrl = () => {
27
27
  this.init(input, output);
28
28
  return this.src
29
- .pipe((0, tslib_1.__classPrivateFieldGet)(this, _UrlTask_urlProcessing, "f").call(this, 'img'))
30
- .pipe((0, tslib_1.__classPrivateFieldGet)(this, _UrlTask_urlProcessing, "f").call(this, 'font'))
29
+ .pipe(tslib_1.__classPrivateFieldGet(this, _UrlTask_urlProcessing, "f").call(this, 'img'))
30
+ .pipe(tslib_1.__classPrivateFieldGet(this, _UrlTask_urlProcessing, "f").call(this, 'font'))
31
31
  .pipe(gulp.dest(this.output));
32
32
  };
33
33
  return balmUrl;
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  const webpack_1 = require("../../bundler/webpack");
5
- const compiling_1 = (0, tslib_1.__importDefault)(require("../../utilities/compiling"));
5
+ const compiling_1 = tslib_1.__importDefault(require("../../utilities/compiling"));
6
6
  class WebpackTask extends BalmJS.BalmTask {
7
7
  constructor() {
8
8
  super('webpack');
@@ -14,13 +14,22 @@ class WebpackTask extends BalmJS.BalmTask {
14
14
  compiling_1.default.start();
15
15
  BalmJS.webpackCompiler = (0, webpack_1.webpack)((0, webpack_1.webpackConfig)(this.input, this.output, customOptions, isHook), (error, stats) => {
16
16
  compiling_1.default.stop();
17
- const scriptLogLevel = stats.hasErrors()
18
- ? BalmJS.LogLevel.Error
19
- : stats.hasWarnings()
20
- ? BalmJS.LogLevel.Warn
21
- : BalmJS.LogLevel.Info;
22
- if (BalmJS.config.logs.level <= scriptLogLevel) {
23
- console.log(stats.toString(BalmJS.config.scripts.stats));
17
+ try {
18
+ const scriptLogLevel = stats.hasErrors()
19
+ ? BalmJS.LogLevel.Error
20
+ : stats.hasWarnings()
21
+ ? BalmJS.LogLevel.Warn
22
+ : BalmJS.LogLevel.Info;
23
+ if (BalmJS.config.logs.level <= scriptLogLevel) {
24
+ console.log(stats.toString(BalmJS.config.scripts.stats));
25
+ }
26
+ }
27
+ catch (e) {
28
+ BalmJS.logger.error(`${this.name} task`, error.stack || error);
29
+ if (error.details) {
30
+ BalmJS.logger.error(`${this.name} task`, error.details);
31
+ }
32
+ return;
24
33
  }
25
34
  fn && fn();
26
35
  callback();
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- const os_1 = (0, tslib_1.__importDefault)(require("os"));
4
+ const os_1 = tslib_1.__importDefault(require("os"));
5
5
  const platform = os_1.default.platform();
6
6
  function getInterfaceName() {
7
7
  let val = 'eth';
@@ -1,11 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- const module_1 = (0, tslib_1.__importDefault)(require("module"));
5
- const path_1 = (0, tslib_1.__importDefault)(require("path"));
4
+ const module_1 = tslib_1.__importDefault(require("module"));
5
+ const path_1 = tslib_1.__importDefault(require("path"));
6
6
  const os_1 = require("os");
7
7
  const fs_1 = require("fs");
8
- const loading_1 = (0, tslib_1.__importDefault)(require("./loading"));
8
+ const loading_1 = tslib_1.__importDefault(require("./loading"));
9
9
  const _require = module_1.default.prototype.require;
10
10
  const SAVE_FILE = path_1.default.join((0, os_1.homedir)(), process.env.BALM_CORE_CACHE || '.balm-core-cache.json');
11
11
  function cacheBalmCore() {
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- const ansi_colors_1 = (0, tslib_1.__importDefault)(require("ansi-colors"));
4
+ const ansi_colors_1 = tslib_1.__importDefault(require("ansi-colors"));
5
5
  const COLOR = {
6
6
  PREFIX: 'bg',
7
7
  SUFFIX: 'Bright'
@@ -2,19 +2,19 @@
2
2
  var _BalmCompiling_firstCompile;
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const tslib_1 = require("tslib");
5
- const loading_1 = (0, tslib_1.__importDefault)(require("./loading"));
5
+ const loading_1 = tslib_1.__importDefault(require("./loading"));
6
6
  class BalmCompiling {
7
7
  constructor() {
8
8
  _BalmCompiling_firstCompile.set(this, true);
9
9
  }
10
10
  start() {
11
- if ((0, tslib_1.__classPrivateFieldGet)(this, _BalmCompiling_firstCompile, "f")) {
11
+ if (tslib_1.__classPrivateFieldGet(this, _BalmCompiling_firstCompile, "f")) {
12
12
  loading_1.default.render('Compiling to JS...');
13
13
  }
14
14
  }
15
15
  stop() {
16
- if ((0, tslib_1.__classPrivateFieldGet)(this, _BalmCompiling_firstCompile, "f")) {
17
- (0, tslib_1.__classPrivateFieldSet)(this, _BalmCompiling_firstCompile, false, "f");
16
+ if (tslib_1.__classPrivateFieldGet(this, _BalmCompiling_firstCompile, "f")) {
17
+ tslib_1.__classPrivateFieldSet(this, _BalmCompiling_firstCompile, false, "f");
18
18
  loading_1.default.clear();
19
19
  }
20
20
  }
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- const net_1 = (0, tslib_1.__importDefault)(require("net"));
5
- const address_1 = (0, tslib_1.__importDefault)(require("./address"));
4
+ const net_1 = tslib_1.__importDefault(require("net"));
5
+ const address_1 = tslib_1.__importDefault(require("./address"));
6
6
  const UTIL_NAME = 'detect port';
7
7
  const MAX_PORT = 65535;
8
8
  function listen(port, host, callback) {
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- const fs_1 = (0, tslib_1.__importDefault)(require("fs"));
5
- const public_url_1 = (0, tslib_1.__importDefault)(require("./public-url"));
4
+ const fs_1 = tslib_1.__importDefault(require("fs"));
5
+ const public_url_1 = tslib_1.__importDefault(require("./public-url"));
6
6
  const constants_1 = require("../config/constants");
7
7
  const appDirectory = fs_1.default.realpathSync(process.cwd());
8
8
  const resolveApp = (relativePath) => path.resolve(appDirectory, relativePath);
@@ -1,10 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- const utils_1 = (0, tslib_1.__importDefault)(require("./utils"));
5
- const logger_1 = (0, tslib_1.__importDefault)(require("./logger"));
6
- const file_1 = (0, tslib_1.__importDefault)(require("./file"));
7
- const namespace_1 = (0, tslib_1.__importDefault)(require("./namespace"));
4
+ const utils_1 = tslib_1.__importDefault(require("./utils"));
5
+ const logger_1 = tslib_1.__importDefault(require("./logger"));
6
+ const file_1 = tslib_1.__importDefault(require("./file"));
7
+ const namespace_1 = tslib_1.__importDefault(require("./namespace"));
8
8
  BalmJS.utils = utils_1.default;
9
9
  BalmJS.logger = logger_1.default;
10
10
  BalmJS.file = file_1.default;
@@ -2,9 +2,9 @@
2
2
  var _BalmLoading_stream, _BalmLoading_frameIndex, _BalmLoading_frameCount;
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const tslib_1 = require("tslib");
5
- const readline_1 = (0, tslib_1.__importDefault)(require("readline"));
6
- const spinner_1 = (0, tslib_1.__importDefault)(require("../config/spinner"));
7
- const version_1 = (0, tslib_1.__importDefault)(require("../config/version"));
5
+ const readline_1 = tslib_1.__importDefault(require("readline"));
6
+ const spinner_1 = tslib_1.__importDefault(require("../config/spinner"));
7
+ const version_1 = tslib_1.__importDefault(require("../config/version"));
8
8
  class BalmLoading {
9
9
  constructor() {
10
10
  _BalmLoading_stream.set(this, process.stderr);
@@ -13,17 +13,17 @@ class BalmLoading {
13
13
  }
14
14
  get frame() {
15
15
  var _a;
16
- const currentFrame = spinner_1.default.frames[(0, tslib_1.__classPrivateFieldGet)(this, _BalmLoading_frameIndex, "f")];
17
- (0, tslib_1.__classPrivateFieldSet)(this, _BalmLoading_frameIndex, (0, tslib_1.__classPrivateFieldSet)(this, _BalmLoading_frameIndex, (_a = (0, tslib_1.__classPrivateFieldGet)(this, _BalmLoading_frameIndex, "f"), ++_a), "f") % (0, tslib_1.__classPrivateFieldGet)(this, _BalmLoading_frameCount, "f"), "f");
16
+ const currentFrame = spinner_1.default.frames[tslib_1.__classPrivateFieldGet(this, _BalmLoading_frameIndex, "f")];
17
+ tslib_1.__classPrivateFieldSet(this, _BalmLoading_frameIndex, tslib_1.__classPrivateFieldSet(this, _BalmLoading_frameIndex, (_a = tslib_1.__classPrivateFieldGet(this, _BalmLoading_frameIndex, "f"), ++_a), "f") % tslib_1.__classPrivateFieldGet(this, _BalmLoading_frameCount, "f"), "f");
18
18
  return currentFrame;
19
19
  }
20
20
  clear() {
21
- readline_1.default.clearLine((0, tslib_1.__classPrivateFieldGet)(this, _BalmLoading_stream, "f"), 0);
22
- readline_1.default.cursorTo((0, tslib_1.__classPrivateFieldGet)(this, _BalmLoading_stream, "f"), 0);
21
+ readline_1.default.clearLine(tslib_1.__classPrivateFieldGet(this, _BalmLoading_stream, "f"), 0);
22
+ readline_1.default.cursorTo(tslib_1.__classPrivateFieldGet(this, _BalmLoading_stream, "f"), 0);
23
23
  }
24
24
  render(text = `${this.frame} BalmJS is initializing...`) {
25
25
  this.clear();
26
- (0, tslib_1.__classPrivateFieldGet)(this, _BalmLoading_stream, "f").write(text);
26
+ tslib_1.__classPrivateFieldGet(this, _BalmLoading_stream, "f").write(text);
27
27
  }
28
28
  succeed() {
29
29
  this.clear();
@@ -2,9 +2,9 @@
2
2
  var _Logger_log;
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  const tslib_1 = require("tslib");
5
- const util_1 = (0, tslib_1.__importDefault)(require("util"));
6
- const fancy_log_1 = (0, tslib_1.__importDefault)(require("fancy-log"));
7
- const color_1 = (0, tslib_1.__importDefault)(require("./color"));
5
+ const util_1 = tslib_1.__importDefault(require("util"));
6
+ const fancy_log_1 = tslib_1.__importDefault(require("fancy-log"));
7
+ const color_1 = tslib_1.__importDefault(require("./color"));
8
8
  const LOG = {
9
9
  FORMAT: '%s %s %s',
10
10
  PREFIX: (0, color_1.default)('BalmJS', {
@@ -57,7 +57,7 @@ class Logger {
57
57
  }, options);
58
58
  if (BalmJS.config.logs.level <= logOptions.logLevel) {
59
59
  console.log(LOG.beginning);
60
- (0, fancy_log_1.default)(LOG.FORMAT, LOG.PREFIX, (0, color_1.default)(`<${label}>`, LOG.OK), (0, tslib_1.__classPrivateFieldGet)(this, _Logger_log, "f").call(this, message, logOptions.pre));
60
+ (0, fancy_log_1.default)(LOG.FORMAT, LOG.PREFIX, (0, color_1.default)(`<${label}>`, LOG.OK), tslib_1.__classPrivateFieldGet(this, _Logger_log, "f").call(this, message, logOptions.pre));
61
61
  console.log(LOG.end);
62
62
  }
63
63
  }
@@ -66,7 +66,7 @@ class Logger {
66
66
  logLevel: BalmJS.LogLevel.Debug
67
67
  }, options);
68
68
  if (BalmJS.config.logs.level <= logOptions.logLevel) {
69
- fancy_log_1.default.info(LOG.FORMAT, LOG.PREFIX, (0, color_1.default)(`<${label}>`, LOG.DEBUG), (0, tslib_1.__classPrivateFieldGet)(this, _Logger_log, "f").call(this, message, logOptions.pre));
69
+ fancy_log_1.default.info(LOG.FORMAT, LOG.PREFIX, (0, color_1.default)(`<${label}>`, LOG.DEBUG), tslib_1.__classPrivateFieldGet(this, _Logger_log, "f").call(this, message, logOptions.pre));
70
70
  }
71
71
  }
72
72
  info(label, message, options = {}) {
@@ -74,7 +74,7 @@ class Logger {
74
74
  logLevel: BalmJS.LogLevel.Info
75
75
  }, options);
76
76
  if (BalmJS.config.logs.level <= logOptions.logLevel) {
77
- fancy_log_1.default.info(LOG.FORMAT, LOG.PREFIX, (0, color_1.default)(`<${label}>`, LOG.INFO), (0, tslib_1.__classPrivateFieldGet)(this, _Logger_log, "f").call(this, message, logOptions.pre));
77
+ fancy_log_1.default.info(LOG.FORMAT, LOG.PREFIX, (0, color_1.default)(`<${label}>`, LOG.INFO), tslib_1.__classPrivateFieldGet(this, _Logger_log, "f").call(this, message, logOptions.pre));
78
78
  }
79
79
  }
80
80
  warn(label, message, options = {}) {
@@ -82,7 +82,7 @@ class Logger {
82
82
  logLevel: BalmJS.LogLevel.Warn
83
83
  }, options);
84
84
  if (BalmJS.config.logs.level <= logOptions.logLevel) {
85
- fancy_log_1.default.warn(LOG.FORMAT, LOG.PREFIX, (0, color_1.default)(`<${label}>`, LOG.WARN), (0, tslib_1.__classPrivateFieldGet)(this, _Logger_log, "f").call(this, message, logOptions.pre));
85
+ fancy_log_1.default.warn(LOG.FORMAT, LOG.PREFIX, (0, color_1.default)(`<${label}>`, LOG.WARN), tslib_1.__classPrivateFieldGet(this, _Logger_log, "f").call(this, message, logOptions.pre));
86
86
  }
87
87
  }
88
88
  error(label, message, options = {}) {
@@ -91,7 +91,7 @@ class Logger {
91
91
  pre: false
92
92
  }, options);
93
93
  if (BalmJS.config.logs.level <= logOptions.logLevel) {
94
- fancy_log_1.default.error(LOG.FORMAT, LOG.PREFIX, (0, color_1.default)(`<${label}>`, LOG.ERROR), (0, tslib_1.__classPrivateFieldGet)(this, _Logger_log, "f").call(this, message, logOptions.pre));
94
+ fancy_log_1.default.error(LOG.FORMAT, LOG.PREFIX, (0, color_1.default)(`<${label}>`, LOG.ERROR), tslib_1.__classPrivateFieldGet(this, _Logger_log, "f").call(this, message, logOptions.pre));
95
95
  }
96
96
  }
97
97
  }
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- const escape_string_regexp_1 = (0, tslib_1.__importDefault)(require("./escape-string-regexp"));
4
+ const escape_string_regexp_1 = tslib_1.__importDefault(require("./escape-string-regexp"));
5
5
  function createReplaceFn(replace, isRegEx) {
6
6
  function regexReplaceFunction(...args) {
7
7
  let newReplace = replace;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- const typeof_1 = (0, tslib_1.__importDefault)(require("./typeof"));
4
+ const typeof_1 = tslib_1.__importDefault(require("./typeof"));
5
5
  function isString(str) {
6
6
  return (0, typeof_1.default)(str) === 'string';
7
7
  }