File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env node
2
- /*
3
2
4
- Pretty annoyed by overhead of tooling for such a simple process of
5
- releasing a new version
6
- */
7
3
const extendscriptr = require ( 'commander' ) ;
8
4
const packageJson = require ( './package.json' ) ;
9
5
const browserify = require ( 'browserify' ) ;
@@ -29,9 +25,6 @@ extendscriptr.options.forEach(function(opt) {
29
25
) ;
30
26
} ) ;
31
27
32
- var fooBah = function ( ) {
33
- let annoyed = true ;
34
- } ;
35
28
var prototypePolyfills = fs . readFileSync ( './node_modules/extendscript.prototypes/lib/extendscript.prototypes.js' , 'utf8' ) ;
36
29
var browserifyPlugins = [ [ prependify , prototypePolyfills ] ] ;
37
30
Original file line number Diff line number Diff line change 2
2
"bin" : {
3
3
"extendscriptr" : " ./index.js"
4
4
},
5
+ "version" :" 1.1.0" ,
5
6
"name" : " extendscriptr" ,
6
7
"description" : " A node build configuration to develop extendScripts with es2015 javascript code" ,
7
8
"scripts" : {
You can’t perform that action at this time.
0 commit comments