remove browserify

This commit is contained in:
jonschlinkert 2016-09-03 14:19:38 -04:00
parent 9a69036116
commit b0f7fe2547
2 changed files with 2 additions and 26 deletions

View file

@ -1,23 +0,0 @@
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
/*!
* is-extglob <https://github.com/jonschlinkert/is-extglob>
*
* Copyright (c) 2014-2016, Jon Schlinkert.
* Licensed under the MIT License.
*/
module.exports = function isExtglob(str) {
if (!str || typeof str !== 'string') {
return false;
}
var m, matches = [];
while ((m = /(\\).|([@?!+*]\()/g.exec(str))) {
if (m[2]) matches.push(m[2]);
str = str.slice(m.index + m[0].length);
}
return matches.length;
};
},{}]},{},[1]);

View file

@ -19,8 +19,7 @@
"node": ">=0.10.0" "node": ">=0.10.0"
}, },
"scripts": { "scripts": {
"test": "mocha", "test": "mocha"
"prepublish": "browserify -o browser.js -e index.js"
}, },
"devDependencies": { "devDependencies": {
"gulp-format-md": "^0.1.10" "gulp-format-md": "^0.1.10"
@ -68,4 +67,4 @@
"reflinks": true "reflinks": true
} }
} }
} }