This repository was archived by the owner on Feb 2, 2025. It is now read-only.
File tree 3 files changed +39
-0
lines changed
3 files changed +39
-0
lines changed Original file line number Diff line number Diff line change 17
17
! protractor * .js
18
18
! systemjs.config.js
19
19
! demo /src /** /* .js
20
+ ! rollup.conf.js
21
+ ! rollup-uglify.conf.js
20
22
21
23
# angular-datatables specific
22
24
* .js.map
Original file line number Diff line number Diff line change
1
+ import uglify from 'rollup-plugin-uglify' ;
2
+
3
+ export default {
4
+ entry : 'index.js' ,
5
+ dest : 'bundles/angular-datatables.umd.min.js' ,
6
+ format : 'umd' ,
7
+ external : [
8
+ '@angular/core' ,
9
+ '@angular/platform-browser' ,
10
+ '@angular/common'
11
+ ] ,
12
+ globals : {
13
+ '@angular/core' : 'ng.core' ,
14
+ '@angular/platform-browser' : 'ng.platform-browser' ,
15
+ '@angular/common' : 'ng.common'
16
+ } ,
17
+ moduleName : 'angular.datatables' ,
18
+ plugins : [
19
+ uglify ( )
20
+ ]
21
+ }
Original file line number Diff line number Diff line change
1
+ export default {
2
+ entry : 'index.js' ,
3
+ dest : 'bundles/angular-datatables.umd.js' ,
4
+ format : 'umd' ,
5
+ external : [
6
+ '@angular/core' ,
7
+ '@angular/platform-browser' ,
8
+ '@angular/common'
9
+ ] ,
10
+ globals : {
11
+ '@angular/core' : 'ng.core' ,
12
+ '@angular/platform-browser' : 'ng.platform-browser' ,
13
+ '@angular/common' : 'ng.common'
14
+ } ,
15
+ moduleName : 'angular.datatables'
16
+ }
You can’t perform that action at this time.
0 commit comments