@stackframe/init-stack 2.7.9 → 2.7.10
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.
- package/CHANGELOG.md +8 -0
- package/index.mjs +4 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/index.mjs
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
+
import * as stackSharedStrings from '@stackframe/stack-shared/dist/utils/strings';
|
|
3
4
|
import * as child_process from "child_process";
|
|
4
5
|
import * as fs from "fs";
|
|
5
6
|
import inquirer from "inquirer";
|
|
6
7
|
import open from "open";
|
|
7
8
|
import * as path from "path";
|
|
8
|
-
|
|
9
|
+
|
|
10
|
+
// stackSharedStrings is a CommonJS module, so we need to import it differently
|
|
11
|
+
const { templateIdentity, deindent } = stackSharedStrings;
|
|
9
12
|
|
|
10
13
|
const jsLikeFileExtensions = [
|
|
11
14
|
"mtsx",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackframe/init-stack",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.10",
|
|
4
4
|
"description": "The setup wizard for Stack. https://stack-auth.com",
|
|
5
5
|
"main": "index.mjs",
|
|
6
6
|
"bin": "./index.mjs",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"inquirer": "^9.2.19",
|
|
19
19
|
"open": "^10.1.0",
|
|
20
|
-
"@stackframe/stack-shared": "2.7.
|
|
20
|
+
"@stackframe/stack-shared": "2.7.10"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"clean": "rimraf test-run-output && rimraf node_modules",
|