Skip to content

Commit

Permalink
feat: support copying dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
DominusKelvin committed Jan 19, 2024
1 parent 2fe3149 commit 0884c4e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ module.exports = function defineShipwrightHook(sails) {
to: path.resolve(appPath, '.tmp', 'public', 'fonts'),
noErrorOnMissing: true
},
{
from: path.resolve(appPath, 'assets', 'dependencies'),
to: path.resolve(appPath, '.tmp', 'public', 'dependencies'),
noErrorOnMissing: true
},
{
context: path.resolve(appPath, 'assets'),
from: '**/*.html',
Expand Down

0 comments on commit 0884c4e

Please sign in to comment.