From 329a145fb3b8d2aa244f2ce794449b6ab610a7fd Mon Sep 17 00:00:00 2001 From: Ben Lesh Date: Thu, 12 Apr 2018 11:24:04 -0700 Subject: [PATCH] fix(migrations): build now properly copies migration into package (#3555) --- .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);