Try to fix external js issue
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
This commit is contained in:
parent
b281f0bed8
commit
8a5170a92c
@ -12,9 +12,7 @@ pipeline {
|
||||
}
|
||||
stage('build'){
|
||||
steps {
|
||||
sh '''ng build common
|
||||
cp projects/common/src/assets/resumable.js dist/common/fesm2015
|
||||
cp projects/common/src/assets/resumable.js dist/common/fesm5'''
|
||||
sh '''ng build common'''
|
||||
}
|
||||
}
|
||||
stage('npm publish'){
|
||||
|
@ -4,7 +4,7 @@ import { Subject , of } from 'rxjs';
|
||||
import { HttpClient, HttpParams } from "@angular/common/http";
|
||||
|
||||
|
||||
declare var require; // avoid missing property error on require
|
||||
declare var Resumable; // avoid missing property error on require
|
||||
|
||||
@Injectable()
|
||||
export class ResumableFileUploadService {
|
||||
@ -26,8 +26,8 @@ export class ResumableFileUploadService {
|
||||
|
||||
init = function () {
|
||||
this.ref
|
||||
require.ensure([], require => {
|
||||
let Resumable = require('./resumable.js');
|
||||
// require.ensure([], require => {
|
||||
//let Resumable = require('./resumable.js');
|
||||
var other = this;
|
||||
this.resumable = new Resumable(
|
||||
{
|
||||
@ -105,7 +105,7 @@ export class ResumableFileUploadService {
|
||||
if (this.dropElement) this.resumable.assignDrop(this.dropElement);
|
||||
if (this.fileBrowseElement) this.resumable.assignBrowse(this.fileBrowseElement);
|
||||
if (this.directoryBrowseElement) this.resumable.assignBrowse(this.directoryBrowseElement, true);
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
addFiles = (files: any[], event: any, geoRefJson?: string, attributes?: any) => {
|
||||
|
@ -11,7 +11,7 @@
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"importHelpers": true,
|
||||
"types": [],
|
||||
"types": ["node_modules/resumable/resumable.js"],
|
||||
"lib": [
|
||||
"dom",
|
||||
"es2018"
|
||||
|
Loading…
Reference in New Issue
Block a user