WebWorldWind/tools/WorldWindShim.build.js
Zach Glueckert d7f8171690 Create distribution folder for generated assets (#281)
* 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
2017-11-08 10:11:32 -08:00

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;
});