Skip to content

Commit

Permalink
fix: amend paths
Browse files Browse the repository at this point in the history
  • Loading branch information
neodmy committed Dec 11, 2023
1 parent 8a6888c commit 7ae7a3a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = ({ confabulous } = {}) => {

const start = (params, cb) =>
new Confabulous()
.add(() => loaders.require({ path: path.join(process.cwd(), 'config', 'default.js'), watch: true }))
.add(() => loaders.require({ path: path.join(process.cwd(), 'src', 'config', 'default.js'), watch: true }))
.add(() =>
loaders.require({
path: path.join(process.cwd(), 'config', `${process.env.SERVICE_ENV}.js`),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {
validationEndpoint: '/test',
format: 'yaml',
yaml: {
file: './docs/syncapi.yaml',
file: './src/docs/syncapi.yaml',
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ const { join } = require('path');

module.exports = () =>
new System({ name: '<%=directory%>' })
.bootstrap(join(__dirname, 'components'));
.bootstrap(join(__dirname, 'src', 'components'));

0 comments on commit 7ae7a3a

Please sign in to comment.