Skip to content

Commit

Permalink
modified examples buildTargets
Browse files Browse the repository at this point in the history
  • Loading branch information
kpal81xd committed Apr 26, 2024
1 parent 61f4603 commit 49b0c35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function getEngineTargets() {
buildType: 'release',
input: '../src/index.js',
dir: 'dist/iframe',
skipBundled: true
bundleState: 'unbundled'
}));
}
if (NODE_ENV === 'production' || NODE_ENV === 'development') {
Expand All @@ -124,7 +124,7 @@ function getEngineTargets() {
buildType: 'debug',
input: '../src/index.js',
dir: 'dist/iframe',
skipBundled: true
bundleState: 'unbundled'
}));
}
if (NODE_ENV === 'production' || NODE_ENV === 'profiler') {
Expand All @@ -134,7 +134,7 @@ function getEngineTargets() {
buildType: 'profiler',
input: '../src/index.js',
dir: 'dist/iframe',
skipBundled: true
bundleState: 'unbundled'
}));
}
return targets;
Expand Down

0 comments on commit 49b0c35

Please sign in to comment.