Skip to content

Commit

Permalink
feat: adapt source directory
Browse files Browse the repository at this point in the history
Stack projects must now store all source files in a "/src/" directory.
  • Loading branch information
dargmuesli committed Oct 2, 2020
1 parent 598a0fa commit 6b1fdd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const argv = yargs

const projectPath = argv.path || process.cwd()

const stackDevelopmentPath = path.join(projectPath, 'development', 'stack.yml')
const stackProductionPath = path.join(projectPath, 'production', 'production.yml')
const stackDevelopmentPath = path.join(projectPath, 'src', 'development', 'stack.yml')
const stackProductionPath = path.join(projectPath, 'src', 'production', 'production.yml')

// Read YAMLs.

Expand Down

0 comments on commit 6b1fdd4

Please sign in to comment.