Skip to content
Permalink
Browse files
call extra-bundles once - now prependFile step is sync
  • Loading branch information
archmoj committed Mar 18, 2022
1 parent 27998d1 commit 9051a0420d405154fa7ca15148e03b9828fa0ec6
Showing with 4 additions and 1 deletion.
  1. +1 −1 package.json
  2. +3 −0 tasks/extra_bundles.js
@@ -32,7 +32,7 @@
"use-draftlogs": "node tasks/use_draftlogs.js",
"empty-draftlogs": "node tasks/empty_draftlogs.js",
"empty-dist": "node tasks/empty_dist.js",
"build": "npm run empty-dist && npm run preprocess && npm run find-strings && npm run bundle && npm run extra-bundles basic && npm run extra-bundles cartesian && npm run extra-bundles geo && npm run extra-bundles gl2d && npm run extra-bundles gl3d && npm run extra-bundles mapbox && npm run extra-bundles finance && npm run locales && npm run schema dist && npm run stats",
"build": "npm run empty-dist && npm run preprocess && npm run find-strings && npm run bundle && npm run extra-bundles && npm run locales && npm run schema dist && npm run stats",
"regl-codegen": "node devtools/regl_codegen/server.js",
"cibuild": "npm run empty-dist && npm run preprocess && node tasks/cibundle.js",
"watch": "node tasks/watch.js",
@@ -30,6 +30,9 @@ var tasks = [];
for(var i = 0; i < list.length; i++) {
var opts = list[i];

// strict bundle is no longer a partial bundle and generated with bundles
if(opts.name === 'strict') continue;

partialBundle(tasks, {
name: opts.name,
index: opts.index,

0 comments on commit 9051a04

Please sign in to comment.