File tree Expand file tree Collapse file tree 3 files changed +51
-8
lines changed
Expand file tree Collapse file tree 3 files changed +51
-8
lines changed Original file line number Diff line number Diff line change 1+ 'use strict' ;
2+
3+ exports . config = {
4+ paths : {
5+ 'public' : 'dist' ,
6+ 'watched' : [
7+ 'src'
8+ ]
9+ } ,
10+ files : {
11+ stylesheets : {
12+ joinTo : {
13+ 'autocomplete.css' : 'src/autocomplete.less'
14+ }
15+ } ,
16+ javascripts : {
17+ joinTo : {
18+ 'autocomplete.js' : 'src/autocomplete.ts'
19+ }
20+ } ,
21+ } ,
22+ overrides : {
23+ production : {
24+ optimize : true ,
25+ sourceMaps : false ,
26+ // plugins: {
27+ // autoReload: {
28+ // enabled: false
29+ // }
30+ // }
31+ }
32+ } ,
33+ plugins : {
34+ uglify : {
35+ mangle : {
36+ toplevel : true ,
37+ eval : true ,
38+ functions : true
39+ } ,
40+ compress : {
41+ global_defs : {
42+ DEBUG : false
43+ }
44+ }
45+ }
46+ }
47+ } ;
Original file line number Diff line number Diff line change 44 "author" : " support@autocomplete-js.com" ,
55 "license" : " MIT" ,
66 "dependencies" : {
7- "grunt" : " 0.4.*" ,
8- "grunt-cli" : " 0.1.*" ,
9- "grunt-contrib-uglify" : " 0.9.*" ,
10- "grunt-contrib-less" : " 1.0.*" ,
11- "load-grunt-tasks" : " 3.2.*" ,
12- "grunt-contrib-jshint" : " 0.11.*" ,
13- "typescript" : " 1.5.*"
7+ "brunch" : " 1.8.*" ,
8+ "brunch-typescript" : " 1.5.*" ,
9+ "uglify-js-brunch" : " 1.7.*" ,
10+ "less-brunch" : " 1.8.*"
1411 }
1512}
Original file line number Diff line number Diff line change @@ -529,4 +529,3 @@ class AutoComplete {
529529 // delete(params);
530530 }
531531}
532-
You can’t perform that action at this time.
0 commit comments