Skip to content

Commit

Permalink
Merge branch 'release/0.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
DominusKelvin committed Jan 3, 2024
2 parents ee952b6 + 6f70205 commit db8ce69
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,13 @@ module.exports = function defineShipwrightHook(sails) {
copy: [
{
from: path.resolve(appPath, 'assets', 'images'),
to: path.resolve(appPath, '.tmp', 'public', 'images')
to: path.resolve(appPath, '.tmp', 'public', 'images'),
noErrorOnMissing: true
},
{
from: path.resolve(appPath, 'assets', 'fonts'),
to: path.resolve(appPath, '.tmp', 'public', 'fonts')
to: path.resolve(appPath, '.tmp', 'public', 'fonts'),
noErrorOnMissing: true
},
{
context: path.resolve(appPath, 'assets'),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sails-hook-shipwright",
"version": "0.0.1",
"version": "0.0.2",
"description": "The modern asset pipeline for Sails",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit db8ce69

Please sign in to comment.