refactor(packaging): points to es5 code with es2015 import/header, points to umd cod

points to es5 code with es2015 import/header,  points to umd code,  points to
pure es2015 code
This commit is contained in:
Dan Bucholtz
2017-03-27 16:42:01 -05:00
parent 3819740998
commit 54acc74fdb
3 changed files with 24 additions and 23 deletions

View File

@ -31,7 +31,7 @@ export const DIST_BUILD_ROOT = join(DIST_ROOT, PACKAGE_NAME);
export const DIST_BUNDLE_ROOT = join(DIST_BUILD_ROOT, BUNDLES);
export const DIST_BUILD_UMD_ROOT = join(DIST_BUILD_ROOT, UMD_MODULE);
export const DIST_BUILD_UMD_BUNDLE_ENTRYPOINT = join(DIST_BUILD_ROOT, INDEX_JS);
export const DIST_BUILD_ESM_ROOT = join(DIST_BUILD_ROOT, 'esm');
export const DIST_BUILD_ES2015_ROOT = join(DIST_BUILD_ROOT, 'es2015');
export const DIST_VENDOR_ROOT = join(DIST_ROOT, VENDOR_NAME);
export const NODE_MODULES_ROOT = join(PROJECT_ROOT, NODE_MODULES);
export const SCRIPTS_ROOT = join(PROJECT_ROOT, SCRIPTS_NAME);