mirror of
https://github.com/NASAWorldWind/WebWorldWind.git
synced 2025-12-08 19:46:18 +00:00
* Modify build script to write build artifacts to distribution directory - Deposit other client consumable assets in the distribution directory - See #280 * Remove unnecessary escape on file match * Add clean task * Simplify task structure * Fix Artifactory deployment path * Remove asset publishing directory from clean task * Add npm clean task * WebStorm configuration change to ignore distribution folder * Add test-results folder as a clean target
12 lines
557 B
JavaScript
12 lines
557 B
JavaScript
/**
|
|
* This shim is used to switch between the individual WorldWind source files and the minified single file library for
|
|
* the WorldWind module. Switching allows locally developed examples to run from the individual WorldWind source files
|
|
* and hosted examples to use the faster to download minified library. A shim is not required for the use of WorldWind.
|
|
* The minified library (worldwind.min.js) is recommended for use in deployed applications.
|
|
*/
|
|
define(['../worldwind.min.js'], function (WorldWind) {
|
|
"use strict";
|
|
|
|
return WorldWind;
|
|
});
|