Skip to content

Commit

Permalink
chore: Update build script comments re:ESNext
Browse files Browse the repository at this point in the history
  • Loading branch information
rschristian committed Mar 18, 2023
1 parent 2f4b7b3 commit 1ad0ef7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/toolkit/scripts/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,23 +51,23 @@ const buildTargets: BuildOptions[] = [
minify: true,
env: 'production',
},
// ESM, embedded `process`, ES2017 syntax: modern Webpack dev
// ESM, embedded `process`: modern Webpack dev
{
format: 'esm',
name: 'modern',
target: 'esnext',
minify: false,
env: '',
},
// ESM, pre-compiled "dev", ES2017 syntax: browser development
// ESM, pre-compiled "dev": browser development
{
format: 'esm',
name: 'modern.development',
target: 'esnext',
minify: false,
env: 'development',
},
// ESM, pre-compiled "prod", ES2017 syntax: browser prod
// ESM, pre-compiled "prod": browser prod
{
format: 'esm',
name: 'modern.production.min',
Expand Down

0 comments on commit 1ad0ef7

Please sign in to comment.