We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b65162 commit 756558aCopy full SHA for 756558a
package.json
@@ -5,7 +5,7 @@
5
"email": "[email protected]"
6
},
7
"repository": "https://github.com/kla/stax",
8
- "version": "0.7.2",
+ "version": "0.7.3",
9
"main": "./dist/index.js",
10
"exports": {
11
".": {
src/stax.ts
@@ -34,7 +34,7 @@ export default class Stax {
34
35
deduceAppName(appName: string): string {
36
if (!appName) {
37
- const dir = path.basename(process.cwd())
+ const dir = path.basename(process.env.STAX_APP_DIR || process.cwd())
38
39
if (this.apps().find(app => app.name == dir))
40
appName = dir
0 commit comments