@stackable-labs/cli-app-extension 1.60.1 → 1.62.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 (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -21,6 +21,9 @@ import open from 'open';
21
21
  import { homedir } from 'os';
22
22
  import https from 'https';
23
23
 
24
+ // ../../lib/utils-js/src/format.ts
25
+ var toKebabCase = (value) => value.trim().toLowerCase().replace(/[^a-z0-9]+/g, "-").replace(/^-|-$/g, "");
26
+
24
27
  // ../../lib/utils-js/src/promise.ts
25
28
  var delay = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
26
29
  var WORDMARK = [
@@ -1434,9 +1437,6 @@ var writeDevContext = async (projectRoot, ctx) => {
1434
1437
  await writeEnvFile(join(projectRoot, ".env.stackable"), env);
1435
1438
  };
1436
1439
 
1437
- // src/lib/utils.ts
1438
- var toKebabCase = (value) => value.trim().toLowerCase().replace(/[^a-z0-9]+/g, "-").replace(/^-+|-+$/g, "");
1439
-
1440
1440
  // src/lib/scaffold.ts
1441
1441
  var isTextFile = (filePath) => /\.(ts|tsx|js|jsx|json|md|html|yml|yaml|env|gitignore|nvmrc)$/i.test(filePath);
1442
1442
  var normalizeTargets = (targets) => Array.from(new Set(targets));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackable-labs/cli-app-extension",
3
- "version": "1.60.1",
3
+ "version": "1.62.0",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "bin": {