├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── app ├── _app.profile.js ├── build ├── buildTool.js ├── copyapp.js ├── exportUtils.js ├── prebuild.js ├── remoteBuild.js ├── start-find-duplicated-module.js └── utilscripts.js ├── license.txt ├── package.json └── test ├── fake-js-files.js ├── test-export.js └── test-remote-build.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/README.md -------------------------------------------------------------------------------- /app/_app.profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/app/_app.profile.js -------------------------------------------------------------------------------- /app/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/app/build -------------------------------------------------------------------------------- /app/buildTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/app/buildTool.js -------------------------------------------------------------------------------- /app/copyapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/app/copyapp.js -------------------------------------------------------------------------------- /app/exportUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/app/exportUtils.js -------------------------------------------------------------------------------- /app/prebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/app/prebuild.js -------------------------------------------------------------------------------- /app/remoteBuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/app/remoteBuild.js -------------------------------------------------------------------------------- /app/start-find-duplicated-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/app/start-find-duplicated-module.js -------------------------------------------------------------------------------- /app/utilscripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/app/utilscripts.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/package.json -------------------------------------------------------------------------------- /test/fake-js-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/test/fake-js-files.js -------------------------------------------------------------------------------- /test/test-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/test/test-export.js -------------------------------------------------------------------------------- /test/test-remote-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/esri-wab-build/HEAD/test/test-remote-build.js --------------------------------------------------------------------------------