@intuned/runtime-dev 1.1.3-release-test-03 → 1.1.3-windows-version

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.
@@ -15,7 +15,6 @@ var _types = require("../../common/cli/types");
15
15
  var _chalk = _interopRequireDefault(require("chalk"));
16
16
  var _inquirer = _interopRequireDefault(require("inquirer"));
17
17
  var _path = _interopRequireDefault(require("path"));
18
- var _boxen = _interopRequireDefault(require("boxen"));
19
18
  var _projectExclusions = _interopRequireDefault(require("../common/projectExclusions"));
20
19
  var _constants = require("../../common/cli/constants");
21
20
  var _cliReadme = require("../../common/cli/cliReadme");
@@ -139,12 +138,7 @@ async function scaffoldProject(templateId, isTargetDirectoryEmpty) {
139
138
  await prepareCLITemplate(codeTree);
140
139
  await mountFiles(cwd, codeTree);
141
140
  console.log(_chalk.default.green("✓ Project files created"));
142
- console.log((0, _boxen.default)(_chalk.default.green(`✅ Project initialized successfully`) + `\n\n${_chalk.default.cyan("Project details:")}` + `\n• Template: ${_chalk.default.bold(templateId)}` + `\n• Directory: ${_chalk.default.bold(process.cwd())}` + `\n\n${_chalk.default.cyan("Next steps:")}` + `\n1. ${_chalk.default.bold("cd")} into your project directory (if not already there)` + `\n2. Run ${_chalk.default.bold("npm/yarn install")} to install dependencies` + `\n3. Develop, test and run your automation APIs`, {
143
- padding: 1,
144
- margin: 1,
145
- borderStyle: "round",
146
- borderColor: "green"
147
- }));
141
+ console.log(_chalk.default.cyan(`\n🎉 Project initialized successfully!`), _chalk.default.yellow(`\n\nRun ${_chalk.default.bold("yarn")} to install dependencies and start coding!`));
148
142
  }
149
143
  async function fetchProjectTemplate(templateId) {
150
144
  const baseUrl = (0, _utils.getBaseUrl)();
@@ -27,7 +27,7 @@ const userCLIScripts = exports.userCLIScripts = {
27
27
  };
28
28
  const tsConfigCli = exports.tsConfigCli = {
29
29
  compilerOptions: {
30
- moduleResolution: "bundler",
30
+ moduleResolution: "node",
31
31
  target: "ES2021",
32
32
  outDir: "./dist",
33
33
  sourceMap: false,
@@ -45,7 +45,7 @@ async function getProductionPlaywrightConstructs({
45
45
  }
46
46
  const userDataDir = await createUserDirWithPreferences();
47
47
  const context = await playwright.chromium.launchPersistentContext(userDataDir, {
48
- headless: false,
48
+ headless,
49
49
  viewport: null,
50
50
  proxy,
51
51
  downloadsPath
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intuned/runtime-dev",
3
- "version": "1.1.3-release-test-03",
3
+ "version": "1.1.3-windows-version",
4
4
  "description": "Intuned runtime",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",
@@ -69,7 +69,6 @@
69
69
  "@types/node": "20.4.1",
70
70
  "applicationinsights": "2.9.2",
71
71
  "babel-plugin-dynamic-import-node": "2.3.3",
72
- "boxen": "8.0.1",
73
72
  "chalk": "^4.1.2",
74
73
  "commander": "^11.0.0",
75
74
  "cross-fetch": "^4.0.0",