@intuned/runtime-dev 1.0.6-dev-1 → 1.0.6-dev-2

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.
@@ -9,7 +9,7 @@ exports.validateProjectName = void 0;
9
9
  var fs = _interopRequireWildcard(require("fs"));
10
10
  var path = _interopRequireWildcard(require("path"));
11
11
  var _chalk = _interopRequireDefault(require("chalk"));
12
- var _minimatch = _interopRequireDefault(require("minimatch"));
12
+ var _minimatch = require("minimatch");
13
13
  var _zod = require("zod");
14
14
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
15
  function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
@@ -29,10 +29,10 @@ function matchesGitignorePatterns(filePath, patterns, projectPath) {
29
29
  for (const pattern of patterns) {
30
30
  if (!pattern || pattern.startsWith("#")) continue;
31
31
  if (pattern.startsWith("!")) {
32
- if ((0, _minimatch.default)(relativePath, pattern.substring(1))) {
32
+ if ((0, _minimatch.minimatch)(relativePath, pattern.substring(1))) {
33
33
  return false;
34
34
  }
35
- } else if ((0, _minimatch.default)(relativePath, pattern)) {
35
+ } else if ((0, _minimatch.minimatch)(relativePath, pattern)) {
36
36
  return true;
37
37
  }
38
38
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intuned/runtime-dev",
3
- "version": "1.0.6-dev-1",
3
+ "version": "1.0.6-dev-2",
4
4
  "description": "Intuned runtime",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",
@@ -68,6 +68,8 @@
68
68
  "applicationinsights": "^2.9.2",
69
69
  "async-retry": "^1.3.3",
70
70
  "babel-plugin-dynamic-import-node": "^2.3.3",
71
+ "box": "^0.0.4",
72
+ "boxen": "^8.0.1",
71
73
  "chalk": "^4.1.2",
72
74
  "commander": "^11.0.0",
73
75
  "cross-fetch": "^4.0.0",
@@ -78,9 +80,11 @@
78
80
  "fs-extra": "^11.3.0",
79
81
  "https-proxy-agent": "^7.0.5",
80
82
  "image-size": "^1.1.1",
83
+ "inquirer": "^12.6.0",
81
84
  "jsonwebtoken": "^9.0.2",
82
85
  "lodash": "^4.17.21",
83
86
  "milliparsec": "^2.3.0",
87
+ "minimatch": "^10.0.1",
84
88
  "ms": "^2.1.3",
85
89
  "nanoid": "3",
86
90
  "neverthrow": "^6.1.0",