bluedither 1.0.26 → 1.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/commands/install.js +3 -1
- package/package.json +1 -1
package/cli/commands/install.js
CHANGED
|
@@ -282,13 +282,15 @@ async function installFromRegistry(slug, targetDir) {
|
|
|
282
282
|
|
|
283
283
|
console.log(` Extracted ${extracted} files to ${bdDir}`);
|
|
284
284
|
|
|
285
|
-
// Copy tuner files from the npm package (
|
|
285
|
+
// Copy tuner + shader files from the npm package (overrides what's in the theme ZIP)
|
|
286
286
|
const tunerFiles = [
|
|
287
287
|
['dist/bluedither-tuner.js', 'bluedither-tuner.js'],
|
|
288
288
|
['fine-tuner/tuner.css', 'bluedither-tuner.css'],
|
|
289
289
|
['fine-tuner/inject.js', 'bluedither-tuner-inject.js'],
|
|
290
290
|
['fine-tuner/dev-middleware.js', 'dev-middleware.js'],
|
|
291
291
|
['fine-tuner/sidecar.js', 'sidecar.js'],
|
|
292
|
+
['theme/shaders/bluedither-shader.js', 'shaders/bluedither-shader.js'],
|
|
293
|
+
['theme/shaders/paper-shaders-bundle.js', 'shaders/paper-shaders-bundle.js'],
|
|
292
294
|
];
|
|
293
295
|
for (const [src, dest] of tunerFiles) {
|
|
294
296
|
const srcPath = resolve(BLUEDITHER_ROOT, src);
|