File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,14 @@ const serveIndex = require('serve-index');
55
66const webpack = require ( 'webpack' ) ;
77const webpackDevMiddleware = require ( 'webpack-dev-middleware' ) ;
8+
89const product = process . argv [ 2 ] ;
910var dirname = product === 'openlayers' ? 'ol' : product
1011const app = ( module . exports = express ( ) ) ;
1112if ( product ) {
1213 const config = require ( `./webpack.config.${ product } .js` ) ;
1314 const configBase = require ( `./webpack.config.base.js` ) ;
14- const entry = [ `./src/${ product } /${ product === 'classic' ? 'index' : ' namespace' } .js` ] ;
15+ const entry = [ `./src/${ product } /namespace.js` ] ;
1516 const filename = `iclient-${ dirname } ` ;
1617 config . output . filename = `${ filename } -es6.min.js` ;
1718 config . output . path = path . resolve ( `${ __dirname } /../dist/${ dirname } ` ) ;
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ export { OutputSetting } from '@supermap/iclient-common/iServer/OutputSetting';
1616export { MappingParameters } from '@supermap/iclient-common/iServer/MappingParameters' ;
1717export { GeoCodingParameter } from '@supermap/iclient-common/iServer/GeoCodingParameter' ;
1818export { GeoDecodingParameter } from '@supermap/iclient-common/iServer/GeoDecodingParameter' ;
19+ export { VectorClipJobsParameter } from '@supermap/iclient-common/iServer/VectorClipJobsParameter' ;
1920export { Util } from '@supermap/iclient-common/commontypes/Util' ;
2021export * from './overlay' ;
2122export * from './services' ;
Original file line number Diff line number Diff line change 11import {
22 ElasticSearch ,
33 SecurityManager ,
4+ VectorClipJobsParameter ,
45 KernelDensityJobParameter ,
56 SingleObjectQueryJobsParameter ,
67 SummaryAttributesJobsParameter ,
@@ -19,6 +20,7 @@ import {
1920
2021SuperMap . ElasticSearch = ElasticSearch ;
2122SuperMap . SecurityManager = SecurityManager ;
23+ SuperMap . VectorClipJobsParameter = VectorClipJobsParameter ;
2224SuperMap . KernelDensityJobParameter = KernelDensityJobParameter ;
2325SuperMap . SingleObjectQueryJobsParameter = SingleObjectQueryJobsParameter ;
2426SuperMap . SummaryAttributesJobsParameter = SummaryAttributesJobsParameter ;
You can’t perform that action at this time.
0 commit comments