Skip to content

Commit

Permalink
The unscoped npm package is now just a wrapper around the @jsdevtools
Browse files Browse the repository at this point in the history
…scoped npm package
  • Loading branch information
JamesMessinger committed Mar 6, 2020
1 parent bf0cdb8 commit 523d6ab
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dist/globify.js
@@ -0,0 +1,4 @@
#!/usr/bin/env node
"use strict";
const globify = require("@jsdevtools/globify");
globify(process.argv.slice(2));
2 changes: 2 additions & 0 deletions dist/index.js
@@ -0,0 +1,2 @@
"use strict";
module.exports = require("@jsdevtools/globify");
35 changes: 35 additions & 0 deletions dist/package.json
@@ -0,0 +1,35 @@
{
"name": "globify",
"version": "X.X.X",
"description": "Run browserify and watchify with globs - even on Windows!",
"keywords": [
"browserify",
"watchify",
"glob",
"cli"
],
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://jstools.dev/globify",
"repository": {
"type": "git",
"url": "https://github.com/JS-DevTools/globify.git"
},
"main": "index.js",
"bin": {
"globify": "globify.js"
},
"files": [
"globify.js",
"index.js"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"@jsdevtools/globify": "X.X.X"
}
}

0 comments on commit 523d6ab

Please sign in to comment.