From 0884c4e388440b9938b6acea46c637054e02c275 Mon Sep 17 00:00:00 2001 From: Kelvin Oghenerhoro Omereshone Date: Fri, 19 Jan 2024 12:40:29 +0100 Subject: [PATCH 1/2] feat: support copying dependencies --- index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.js b/index.js index d7ca43b..6b8db91 100644 --- a/index.js +++ b/index.js @@ -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', From c192fb9ec74684a61da6a92be1d36213631a1590 Mon Sep 17 00:00:00 2001 From: Kelvin Oghenerhoro Omereshone Date: Fri, 19 Jan 2024 12:51:00 +0100 Subject: [PATCH 2/2] chore: release 0.0.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b40db46..144d767 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sails-hook-shipwright", - "version": "0.0.2", + "version": "0.0.3", "description": "The modern asset pipeline for Sails", "main": "index.js", "scripts": {