From 3021f35f2e55e34c99d81d442d5b9517eea321d7 Mon Sep 17 00:00:00 2001 From: Ben Lesh Date: Thu, 12 Apr 2018 10:17:35 -0700 Subject: [PATCH] fix(migrations): build now properly copies migration into package --- .make-packages.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.make-packages.js b/.make-packages.js index 44570eaacd..0fd4c66a0b 100644 --- a/.make-packages.js +++ b/.make-packages.js @@ -138,6 +138,8 @@ fs.copySync('src/websocket/package.json', PKG_ROOT + '/websocket/package.json'); fs.copySync('src/testing/package.json', PKG_ROOT + '/testing/package.json'); fs.copySync('src/internal-compatibility/package.json', PKG_ROOT + '/internal-compatibility/package.json'); +// Copy over migrations +fs.copySync('migrations/', PKG_ROOT + 'migrations/'); if (fs.existsSync(UMD_ROOT)) { fs.copySync(UMD_ROOT, UMD_PKG);