Package Exports
- esri-wab-build
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (esri-wab-build) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
esri-wab-build
Package used to build ESRI Web App Builder Apps for production.
Verified and designed for 2D Apps built using Web App Builder for Developers 2.3 - 2.7.
This task runs a full dojo build on any web app builder application, which will greatly improve performance.
Based largely around the scripts built by Junshan Liu (@qlqllu) at https://geonet.esri.com/docs/DOC-7934
Requirements:
- Bower (validated with 1.8.0)
installation :
npm install -g bower
- Nodejs (validated with 6.9.4)
- Java 7 or greater
- Git
Warning
If you see an error around dojo-themes, run: bower cache clear
and try again.
Install and run locally:
Setup
- Navigate to the application to be built
- Create a project.json file (if one does not exist):
npm init
npm install --save-dev esri-wab-build
- Add the following to your package.json's scripts object
"build": "esri-wab-build"
(Note: an optional parameter can be added to build a remote web app builder app. For Example:"esri-wab-build C:\arcgis-web-appbuilder-2.7\WebAppBuilderForArcGIS\server\apps\3"
) - Any user that downloads your application will now be able to build:
Build
npm install
npm run build
The build output will be located in buildOut\app and compressed in buildOut\app.zip
Install and run globally:
npm install -g esri-wab-build
esri-wab-build <location-of-app>
The build output will be located in dist\buildOut\app and compressed in dist\buildOut\app.zip
Scripting
This tool can be used as a library with the following functions:
remoteBuild.buildApp(buildPath)
- Export and build the Web App Builder Application located at
buildPath
into a dist directory - Note:
buildPath
can be an application located in<web-app-builder-home>/server/apps/#
- Export and build the Web App Builder Application located at
buildTool.buildApp(buildPath)
- Build the Web App Builder Application located at
buildPath
- Build the Web App Builder Application located at
exportUtils.exportApp(buildPath)
- Export the Web App Builder Application located at
buildPath
to a dist directory. - Note:
buildPath
can be an application located in<web-app-builder-home>/server/apps/#
- Export the Web App Builder Application located at