progress on migrating to heex templates and font-icons
This commit is contained in:
parent
d43daafdb7
commit
3eff955672
21793 changed files with 2161968 additions and 16895 deletions
assets_old/node_modules/glob-all/bin
18
assets_old/node_modules/glob-all/bin/glob-all
generated
vendored
Executable file
18
assets_old/node_modules/glob-all/bin/glob-all
generated
vendored
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
/**
|
||||
* Find files that match one or more patterns
|
||||
*/
|
||||
|
||||
var glob = require('..');
|
||||
var argv = require('yargs')
|
||||
.usage('Usage: $0 [pattern1..patternN]')
|
||||
.demand(1)
|
||||
.argv;
|
||||
|
||||
var patterns = argv._;
|
||||
if (patterns.length === 1) { patterns = patterns[0].split('\n'); }
|
||||
|
||||
glob.sync(patterns).forEach(function (file) {
|
||||
process.stdout.write(file + '\n');
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue