We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 464d6e6 commit 1175d0eCopy full SHA for 1175d0e
index.js
@@ -1,4 +1,9 @@
1
#!/usr/bin/env node
2
+/*
3
+
4
+Pretty annoyed by overhead of tooling for such a simple process of
5
+releasing a new version
6
+ */
7
const extendscriptr = require('commander');
8
const packageJson = require('./package.json');
9
const browserify = require('browserify');
@@ -24,6 +29,9 @@ extendscriptr.options.forEach(function(opt) {
24
29
);
25
30
});
26
31
32
+var fooBah = function(){
33
+ let annoyed = true;
34
+};
27
35
var prototypePolyfills = fs.readFileSync('./node_modules/extendscript.prototypes/lib/extendscript.prototypes.js', 'utf8');
28
36
var browserifyPlugins = [ [ prependify, prototypePolyfills ] ];
37
0 commit comments