feat: simple snapshooter (#232)

This commit is contained in:
Miralem Drek
2019-12-11 10:33:40 +01:00
committed by GitHub
parent 326465d0ed
commit cf717a57e7
29 changed files with 1000 additions and 199 deletions

View File

@@ -137,6 +137,7 @@ const config = isEsm => {
include: [
'/**/apis/locale/**',
'/**/apis/nucleus/**',
'/**/apis/snapshooter/**',
'/**/apis/supernova/**',
'/**/apis/theme/**',
'/**/packages/ui/**',
@@ -170,4 +171,4 @@ const config = isEsm => {
return cfg;
};
module.exports = [watch ? false : config(), config(true)].filter(Boolean);
module.exports = [watch ? false : config(), pkg.module ? config(true) : false].filter(Boolean);