fix(build): publish Node (server) friendly bundles (#3483)

Co-authored-by: Daniel Sogl <mytechde@outlook.com>
This commit is contained in:
Laurent Goudet
2021-04-05 23:38:19 +02:00
committed by GitHub
parent 0932e113b2
commit b4227f2114
5 changed files with 46 additions and 1 deletions
+9 -1
View File
@@ -1,7 +1,15 @@
import { cleanupNgx, generateDeclarationFiles, modifyMetadata, transpileNgx, transpileNgxCore } from '../build/ngx';
import {
cleanupNgx,
generateLegacyBundles,
generateDeclarationFiles,
modifyMetadata,
transpileNgx,
transpileNgxCore,
} from '../build/ngx';
transpileNgxCore();
transpileNgx();
generateLegacyBundles();
generateDeclarationFiles();
modifyMetadata();
cleanupNgx();
+1
View File
@@ -15,6 +15,7 @@ const FLAGS = '--access public';
const PACKAGE_JSON_BASE = {
description: 'Ionic Native - Native plugins for ionic apps',
main: 'bundle.js',
module: 'index.js',
typings: 'index.d.ts',
author: 'ionic',