@teambit/application 1.0.899 → 1.0.901

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.
@@ -1,5 +1,5 @@
1
- import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_application@1.0.899/dist/application.composition.js';
2
- import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_application@1.0.899/dist/application.docs.mdx';
1
+ import * as compositions_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_application@1.0.901/dist/application.composition.js';
2
+ import * as overview_0 from '/home/circleci/Library/Caches/Bit/capsules/8891be5ad/teambit.harmony_application@1.0.901/dist/application.docs.mdx';
3
3
 
4
4
  export const compositions = [compositions_0];
5
5
  export const overview = [overview_0];
package/dist/run.cmd.js CHANGED
@@ -22,6 +22,10 @@ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e
22
22
  function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
23
23
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
24
24
  function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
25
+ function openBrowser(url) {
26
+ const openUrl = process.env.BIT_VSCODE_EXTENSION === 'true' ? `vscode://bit.vscode-bit/open-browser?url=${encodeURIComponent(url)}` : url;
27
+ return (0, _open().default)(openUrl).then(() => undefined);
28
+ }
25
29
  class RunCmd {
26
30
  constructor(
27
31
  /**
@@ -87,7 +91,7 @@ when no app name is specified, automatically detects and runs the app if only on
87
91
  const url = `http://localhost:${port}`;
88
92
  this.logger.console(`${appName} app is running on ${url}`);
89
93
  if (!noBrowser && port) {
90
- await (0, _open().default)(url);
94
+ await openBrowser(url);
91
95
  }
92
96
  } else if (port) {
93
97
  // New API - also open browser when port is available
@@ -95,7 +99,7 @@ when no app name is specified, automatically detects and runs the app if only on
95
99
  // this.logger.console(`${appName} app is running on ${url}`);
96
100
 
97
101
  if (!noBrowser) {
98
- await (0, _open().default)(url);
102
+ await openBrowser(url);
99
103
  }
100
104
  }
101
105
 
@@ -1 +1 @@
1
- {"version":3,"names":["_chalk","data","_interopRequireDefault","require","_open","e","__esModule","default","_defineProperty","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","RunCmd","constructor","application","logger","name","description","wait","appName","dev","watch","ssr","port","exactPort","args","noBrowser","ids","loadAllAppsAsAspects","length","console","process","exit","resolvedApp","toString","undefined","runStr","chalk","cyan","off","errors","isOldApi","runApp","errStr","map","err","join","url","open","on","code","exports"],"sources":["run.cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport type { Command, CommandOptions } from '@teambit/cli';\nimport type { Logger } from '@teambit/logger';\nimport open from 'open';\nimport type { ApplicationMain } from './application.main.runtime';\n\ntype RunOptions = {\n dev: boolean;\n verbose: boolean;\n skipWatch: boolean;\n watch: boolean;\n ssr: boolean;\n port: string;\n args: string;\n noBrowser: boolean;\n};\n\nexport class RunCmd implements Command {\n name = 'run [app-name]';\n description = 'start an application component locally';\n extendedDescription = `runs application components in their own development server, separate from the \"bit start\" UI.\napps are components that create deployable applications (React apps, Node.js servers, etc.).\nwhen no app name is specified, automatically detects and runs the app if only one exists in the workspace.`;\n helpUrl = 'reference/apps/apps-overview/';\n arguments = [\n {\n name: 'app-name',\n description:\n \"the app's name is registered by the app (run 'bit app list' to list the names of the available apps)\",\n },\n ];\n alias = 'c';\n group = 'run-serve';\n options = [\n ['d', 'dev', 'start the application in dev mode.'],\n ['p', 'port [port-number]', 'port to run the app on'],\n ['v', 'verbose', 'show verbose output for inspection and print stack trace'],\n // ['', 'skip-watch', 'avoid running the watch process that compiles components in the background'],\n ['w', 'watch', 'watch and compile your components upon changes'],\n ['n', 'no-browser', 'do not automatically open browser when ready'],\n [\n 'a',\n 'args <argv>',\n 'the arguments passing to the app. for example, --args=\"--a=1 --b\". don\\'t forget to use quotes to wrap the value to escape special characters.',\n ],\n ] as CommandOptions;\n\n constructor(\n /**\n * access to the extension instance.\n */\n private application: ApplicationMain,\n\n private logger: Logger\n ) {}\n\n async wait([appName]: [string], { dev, watch, ssr, port: exactPort, args, noBrowser }: RunOptions) {\n const ids = await this.application.loadAllAppsAsAspects();\n if (!ids.length) {\n this.logger.console('no apps found');\n process.exit(1);\n }\n const resolvedApp = appName ? appName : ids.length === 1 ? ids[0].toString() : undefined;\n if (!resolvedApp) {\n const runStr = chalk.cyan(`bit run <app id or name>`);\n this.logger.console(`multiple apps found, please specify one using \"${runStr}\"`);\n process.exit(1);\n }\n // remove wds logs until refactoring webpack to a worker through the Worker aspect.\n this.logger.off();\n const { port, errors, isOldApi } = await this.application.runApp(resolvedApp, {\n dev,\n watch,\n ssr,\n port: +exactPort,\n args,\n });\n\n if (errors) {\n const errStr =\n errors && errors.length ? errors.map((err) => err.toString()).join('\\n') : 'unknown error occurred';\n this.logger.console(errStr);\n process.exit(1);\n }\n\n if (isOldApi) {\n const url = `http://localhost:${port}`;\n this.logger.console(`${appName} app is running on ${url}`);\n\n if (!noBrowser && port) {\n await open(url);\n }\n } else if (port) {\n // New API - also open browser when port is available\n const url = `http://localhost:${port}`;\n // this.logger.console(`${appName} app is running on ${url}`);\n\n if (!noBrowser) {\n await open(url);\n }\n }\n\n /**\n * normally, when running \"bit run <app-name>\", the app is running in the background, which keeps the event loop busy.\n * when the even loop is busy, the process doesn't exit, which is what we're looking for.\n *\n * however, if the app is not running in the background, the event loop is free, and the process exits. this is\n * very confusing to the end user, because there is no error and no message indicating what's happening.\n *\n * this \"beforeExit\" event is a good place to catch this case and print a message to the user.\n * it's better than using \"exit\" event, which can caused by the app itself running \"process.exit\".\n * \"beforeExit\" is called when the event loop is empty and the process is about to exit.\n */\n process.on('beforeExit', (code) => {\n if (code === 0) {\n this.logger.console('no app is running in the background, please check your app');\n }\n });\n }\n}\n"],"mappings":";;;;;;AAAA,SAAAA,OAAA;EAAA,MAAAC,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAH,MAAA,YAAAA,CAAA;IAAA,OAAAC,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAGA,SAAAG,MAAA;EAAA,MAAAH,IAAA,GAAAC,sBAAA,CAAAC,OAAA;EAAAC,KAAA,YAAAA,CAAA;IAAA,OAAAH,IAAA;EAAA;EAAA,OAAAA,IAAA;AAAA;AAAwB,SAAAC,uBAAAG,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAAA,SAAAG,gBAAAH,CAAA,EAAAI,CAAA,EAAAC,CAAA,YAAAD,CAAA,GAAAE,cAAA,CAAAF,CAAA,MAAAJ,CAAA,GAAAO,MAAA,CAAAC,cAAA,CAAAR,CAAA,EAAAI,CAAA,IAAAK,KAAA,EAAAJ,CAAA,EAAAK,UAAA,MAAAC,YAAA,MAAAC,QAAA,UAAAZ,CAAA,CAAAI,CAAA,IAAAC,CAAA,EAAAL,CAAA;AAAA,SAAAM,eAAAD,CAAA,QAAAQ,CAAA,GAAAC,YAAA,CAAAT,CAAA,uCAAAQ,CAAA,GAAAA,CAAA,GAAAA,CAAA;AAAA,SAAAC,aAAAT,CAAA,EAAAD,CAAA,2BAAAC,CAAA,KAAAA,CAAA,SAAAA,CAAA,MAAAL,CAAA,GAAAK,CAAA,CAAAU,MAAA,CAAAC,WAAA,kBAAAhB,CAAA,QAAAa,CAAA,GAAAb,CAAA,CAAAiB,IAAA,CAAAZ,CAAA,EAAAD,CAAA,uCAAAS,CAAA,SAAAA,CAAA,YAAAK,SAAA,yEAAAd,CAAA,GAAAe,MAAA,GAAAC,MAAA,EAAAf,CAAA;AAcjB,MAAMgB,MAAM,CAAoB;EA8BrCC,WAAWA;EACT;AACJ;AACA;EACYC,WAA4B,EAE5BC,MAAc,EACtB;IAAA,KAHQD,WAA4B,GAA5BA,WAA4B;IAAA,KAE5BC,MAAc,GAAdA,MAAc;IAAArB,eAAA,eAnCjB,gBAAgB;IAAAA,eAAA,sBACT,wCAAwC;IAAAA,eAAA,8BAChC;AACxB;AACA,2GAA2G;IAAAA,eAAA,kBAC/F,+BAA+B;IAAAA,eAAA,oBAC7B,CACV;MACEsB,IAAI,EAAE,UAAU;MAChBC,WAAW,EACT;IACJ,CAAC,CACF;IAAAvB,eAAA,gBACO,GAAG;IAAAA,eAAA,gBACH,WAAW;IAAAA,eAAA,kBACT,CACR,CAAC,GAAG,EAAE,KAAK,EAAE,oCAAoC,CAAC,EAClD,CAAC,GAAG,EAAE,oBAAoB,EAAE,wBAAwB,CAAC,EACrD,CAAC,GAAG,EAAE,SAAS,EAAE,0DAA0D,CAAC;IAC5E;IACA,CAAC,GAAG,EAAE,OAAO,EAAE,gDAAgD,CAAC,EAChE,CAAC,GAAG,EAAE,YAAY,EAAE,8CAA8C,CAAC,EACnE,CACE,GAAG,EACH,aAAa,EACb,gJAAgJ,CACjJ,CACF;EASE;EAEH,MAAMwB,IAAIA,CAAC,CAACC,OAAO,CAAW,EAAE;IAAEC,GAAG;IAAEC,KAAK;IAAEC,GAAG;IAAEC,IAAI,EAAEC,SAAS;IAAEC,IAAI;IAAEC;EAAsB,CAAC,EAAE;IACjG,MAAMC,GAAG,GAAG,MAAM,IAAI,CAACb,WAAW,CAACc,oBAAoB,CAAC,CAAC;IACzD,IAAI,CAACD,GAAG,CAACE,MAAM,EAAE;MACf,IAAI,CAACd,MAAM,CAACe,OAAO,CAAC,eAAe,CAAC;MACpCC,OAAO,CAACC,IAAI,CAAC,CAAC,CAAC;IACjB;IACA,MAAMC,WAAW,GAAGd,OAAO,GAAGA,OAAO,GAAGQ,GAAG,CAACE,MAAM,KAAK,CAAC,GAAGF,GAAG,CAAC,CAAC,CAAC,CAACO,QAAQ,CAAC,CAAC,GAAGC,SAAS;IACxF,IAAI,CAACF,WAAW,EAAE;MAChB,MAAMG,MAAM,GAAGC,gBAAK,CAACC,IAAI,CAAC,0BAA0B,CAAC;MACrD,IAAI,CAACvB,MAAM,CAACe,OAAO,CAAC,kDAAkDM,MAAM,GAAG,CAAC;MAChFL,OAAO,CAACC,IAAI,CAAC,CAAC,CAAC;IACjB;IACA;IACA,IAAI,CAACjB,MAAM,CAACwB,GAAG,CAAC,CAAC;IACjB,MAAM;MAAEhB,IAAI;MAAEiB,MAAM;MAAEC;IAAS,CAAC,GAAG,MAAM,IAAI,CAAC3B,WAAW,CAAC4B,MAAM,CAACT,WAAW,EAAE;MAC5Eb,GAAG;MACHC,KAAK;MACLC,GAAG;MACHC,IAAI,EAAE,CAACC,SAAS;MAChBC;IACF,CAAC,CAAC;IAEF,IAAIe,MAAM,EAAE;MACV,MAAMG,MAAM,GACVH,MAAM,IAAIA,MAAM,CAACX,MAAM,GAAGW,MAAM,CAACI,GAAG,CAAEC,GAAG,IAAKA,GAAG,CAACX,QAAQ,CAAC,CAAC,CAAC,CAACY,IAAI,CAAC,IAAI,CAAC,GAAG,wBAAwB;MACrG,IAAI,CAAC/B,MAAM,CAACe,OAAO,CAACa,MAAM,CAAC;MAC3BZ,OAAO,CAACC,IAAI,CAAC,CAAC,CAAC;IACjB;IAEA,IAAIS,QAAQ,EAAE;MACZ,MAAMM,GAAG,GAAG,oBAAoBxB,IAAI,EAAE;MACtC,IAAI,CAACR,MAAM,CAACe,OAAO,CAAC,GAAGX,OAAO,sBAAsB4B,GAAG,EAAE,CAAC;MAE1D,IAAI,CAACrB,SAAS,IAAIH,IAAI,EAAE;QACtB,MAAM,IAAAyB,eAAI,EAACD,GAAG,CAAC;MACjB;IACF,CAAC,MAAM,IAAIxB,IAAI,EAAE;MACf;MACA,MAAMwB,GAAG,GAAG,oBAAoBxB,IAAI,EAAE;MACtC;;MAEA,IAAI,CAACG,SAAS,EAAE;QACd,MAAM,IAAAsB,eAAI,EAACD,GAAG,CAAC;MACjB;IACF;;IAEA;AACJ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;IACIhB,OAAO,CAACkB,EAAE,CAAC,YAAY,EAAGC,IAAI,IAAK;MACjC,IAAIA,IAAI,KAAK,CAAC,EAAE;QACd,IAAI,CAACnC,MAAM,CAACe,OAAO,CAAC,4DAA4D,CAAC;MACnF;IACF,CAAC,CAAC;EACJ;AACF;AAACqB,OAAA,CAAAvC,MAAA,GAAAA,MAAA","ignoreList":[]}
1
+ {"version":3,"names":["_chalk","data","_interopRequireDefault","require","_open","e","__esModule","default","_defineProperty","r","t","_toPropertyKey","Object","defineProperty","value","enumerable","configurable","writable","i","_toPrimitive","Symbol","toPrimitive","call","TypeError","String","Number","openBrowser","url","openUrl","process","env","BIT_VSCODE_EXTENSION","encodeURIComponent","open","then","undefined","RunCmd","constructor","application","logger","name","description","wait","appName","dev","watch","ssr","port","exactPort","args","noBrowser","ids","loadAllAppsAsAspects","length","console","exit","resolvedApp","toString","runStr","chalk","cyan","off","errors","isOldApi","runApp","errStr","map","err","join","on","code","exports"],"sources":["run.cmd.ts"],"sourcesContent":["import chalk from 'chalk';\nimport type { Command, CommandOptions } from '@teambit/cli';\nimport type { Logger } from '@teambit/logger';\nimport open from 'open';\nimport type { ApplicationMain } from './application.main.runtime';\n\nfunction openBrowser(url: string): Promise<void> {\n const openUrl =\n process.env.BIT_VSCODE_EXTENSION === 'true'\n ? `vscode://bit.vscode-bit/open-browser?url=${encodeURIComponent(url)}`\n : url;\n return open(openUrl).then(() => undefined);\n}\n\ntype RunOptions = {\n dev: boolean;\n verbose: boolean;\n skipWatch: boolean;\n watch: boolean;\n ssr: boolean;\n port: string;\n args: string;\n noBrowser: boolean;\n};\n\nexport class RunCmd implements Command {\n name = 'run [app-name]';\n description = 'start an application component locally';\n extendedDescription = `runs application components in their own development server, separate from the \"bit start\" UI.\napps are components that create deployable applications (React apps, Node.js servers, etc.).\nwhen no app name is specified, automatically detects and runs the app if only one exists in the workspace.`;\n helpUrl = 'reference/apps/apps-overview/';\n arguments = [\n {\n name: 'app-name',\n description:\n \"the app's name is registered by the app (run 'bit app list' to list the names of the available apps)\",\n },\n ];\n alias = 'c';\n group = 'run-serve';\n options = [\n ['d', 'dev', 'start the application in dev mode.'],\n ['p', 'port [port-number]', 'port to run the app on'],\n ['v', 'verbose', 'show verbose output for inspection and print stack trace'],\n // ['', 'skip-watch', 'avoid running the watch process that compiles components in the background'],\n ['w', 'watch', 'watch and compile your components upon changes'],\n ['n', 'no-browser', 'do not automatically open browser when ready'],\n [\n 'a',\n 'args <argv>',\n 'the arguments passing to the app. for example, --args=\"--a=1 --b\". don\\'t forget to use quotes to wrap the value to escape special characters.',\n ],\n ] as CommandOptions;\n\n constructor(\n /**\n * access to the extension instance.\n */\n private application: ApplicationMain,\n\n private logger: Logger\n ) {}\n\n async wait([appName]: [string], { dev, watch, ssr, port: exactPort, args, noBrowser }: RunOptions) {\n const ids = await this.application.loadAllAppsAsAspects();\n if (!ids.length) {\n this.logger.console('no apps found');\n process.exit(1);\n }\n const resolvedApp = appName ? appName : ids.length === 1 ? ids[0].toString() : undefined;\n if (!resolvedApp) {\n const runStr = chalk.cyan(`bit run <app id or name>`);\n this.logger.console(`multiple apps found, please specify one using \"${runStr}\"`);\n process.exit(1);\n }\n // remove wds logs until refactoring webpack to a worker through the Worker aspect.\n this.logger.off();\n const { port, errors, isOldApi } = await this.application.runApp(resolvedApp, {\n dev,\n watch,\n ssr,\n port: +exactPort,\n args,\n });\n\n if (errors) {\n const errStr =\n errors && errors.length ? errors.map((err) => err.toString()).join('\\n') : 'unknown error occurred';\n this.logger.console(errStr);\n process.exit(1);\n }\n\n if (isOldApi) {\n const url = `http://localhost:${port}`;\n this.logger.console(`${appName} app is running on ${url}`);\n\n if (!noBrowser && port) {\n await openBrowser(url);\n }\n } else if (port) {\n // New API - also open browser when port is available\n const url = `http://localhost:${port}`;\n // this.logger.console(`${appName} app is running on ${url}`);\n\n if (!noBrowser) {\n await openBrowser(url);\n }\n }\n\n /**\n * normally, when running \"bit run <app-name>\", the app is running in the background, which keeps the event loop busy.\n * when the even loop is busy, the process doesn't exit, which is what we're looking for.\n *\n * however, if the app is not running in the background, the event loop is free, and the process exits. this is\n * very confusing to the end user, because there is no error and no message indicating what's happening.\n *\n * this \"beforeExit\" event is a good place to catch this case and print a message to the user.\n * it's better than using \"exit\" event, which can caused by the app itself running \"process.exit\".\n * \"beforeExit\" is called when the event loop is empty and the process is about to exit.\n */\n process.on('beforeExit', (code) => {\n if (code === 0) {\n this.logger.console('no app is running in the background, please check your app');\n }\n });\n }\n}\n"],"mappings":"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","ignoreList":[]}
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@teambit/application",
3
- "version": "1.0.899",
3
+ "version": "1.0.901",
4
4
  "homepage": "https://bit.cloud/teambit/harmony/application",
5
5
  "main": "dist/index.js",
6
6
  "componentId": {
7
7
  "scope": "teambit.harmony",
8
8
  "name": "application",
9
- "version": "1.0.899"
9
+ "version": "1.0.901"
10
10
  },
11
11
  "dependencies": {
12
12
  "chalk": "4.1.2",
@@ -15,18 +15,18 @@
15
15
  "open": "8.4.2",
16
16
  "@teambit/lane-id": "0.0.312",
17
17
  "@teambit/harmony": "0.4.7",
18
- "@teambit/logger": "0.0.1395",
18
+ "@teambit/logger": "0.0.1396",
19
19
  "@teambit/bit-error": "0.0.404",
20
- "@teambit/cli": "0.0.1302",
20
+ "@teambit/cli": "0.0.1303",
21
21
  "@teambit/cli-table": "0.0.50",
22
- "@teambit/builder": "1.0.899",
23
- "@teambit/component": "1.0.899",
24
- "@teambit/isolator": "1.0.899",
25
- "@teambit/envs": "1.0.899",
26
- "@teambit/aspect-loader": "1.0.899",
27
- "@teambit/scope": "1.0.899",
28
- "@teambit/watcher": "1.0.899",
29
- "@teambit/workspace": "1.0.899"
22
+ "@teambit/builder": "1.0.901",
23
+ "@teambit/component": "1.0.901",
24
+ "@teambit/isolator": "1.0.901",
25
+ "@teambit/envs": "1.0.901",
26
+ "@teambit/aspect-loader": "1.0.901",
27
+ "@teambit/scope": "1.0.901",
28
+ "@teambit/watcher": "1.0.901",
29
+ "@teambit/workspace": "1.0.901"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/lodash": "4.14.165",