This repository was archived by the owner on Jan 13, 2024. It is now read-only.
File tree 9 files changed +53
-0
lines changed
9 files changed +53
-0
lines changed Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ /**
4
+ * primitive Binaries must be installed on the system.
5
+ * e.g. go get -u github.com/fogleman/primitive
6
+ */
7
+ module . exports = {
8
+ pkg : {
9
+ }
10
+ } ;
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ module . exports = {
4
+ pkg : {
5
+ scripts : [
6
+ 'lib/**/*.js' ,
7
+ 'plugins/*.js'
8
+ ] ,
9
+ assets : [
10
+ '.svgo.yml'
11
+ ]
12
+ }
13
+ } ;
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ module . exports = {
4
+ pkg : {
5
+ assets : [
6
+ 'lib/data/cacert.pem'
7
+ ]
8
+ }
9
+ } ;
Original file line number Diff line number Diff line change
1
+ { "private" : true }
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ var sqip = require ( 'sqip' ) ;
4
+ if ( sqip !== undefined ) {
5
+ console . log ( 'ok' ) ;
6
+ }
Original file line number Diff line number Diff line change
1
+ { "private" : true }
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ var svgo = require ( 'svgo' ) ;
4
+ if ( svgo !== undefined ) {
5
+ console . log ( 'ok' ) ;
6
+ }
Original file line number Diff line number Diff line change
1
+ { "private" : true }
Original file line number Diff line number Diff line change
1
+ 'use strict' ;
2
+
3
+ var tinify = require ( 'tinify' ) ;
4
+ if ( tinify !== undefined ) {
5
+ console . log ( 'ok' ) ;
6
+ }
You can’t perform that action at this time.
0 commit comments