Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
seangenabe committed Nov 18, 2017
0 parents commit 1da976b
Show file tree
Hide file tree
Showing 12 changed files with 5,738 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules/
*.log
*.log.*
coverage
.nyc_output
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.json
2 changes: 2 additions & 0 deletions .prettierrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
semi: false
singleQuote: true
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
language: node_js
node_js:
- "8"
after_success: npm run coveralls
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true
}
11 changes: 11 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
environment:
matrix:
- nodejs_version: "8"
install:
- ps: Install-Product node $env:nodejs_version x64
- npm install
test_script:
- node --version
- npm --version
- npm test
build: off
36 changes: 36 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
'use strict'

const globby = require('globby')
const FS = require('mz/fs')
const pMap = require('p-map')
const mkdirp = require('mkdirp-promise')
const Path = require('path')

async function hardlink(src, dest, opts = {}) {
const { cwd = process.cwd() } = opts
src = src.toString()
dest = dest.toString()
let files = await globby(src, opts)

const dirs = new Set()
async function ensureDirExists(dir) {
const realdir = Path.resolve(dir)
if (!dirs.has(realdir)) {
await mkdirp(realdir)
dirs.add(realdir)
}
}

await pMap(
files,
async file => {
const realfile = `${cwd}/${file}`
const destpath = `${dest}/${file}`
await ensureDirExists(`${destpath}/..`)
await FS.link(realfile, destpath)
},
{ concurrency: 32 }
)
}

module.exports = hardlink
9 changes: 9 additions & 0 deletions license.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
MIT License

Copyright (c) 2017 Sean Marvi Oliver Genabe

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 comments on commit 1da976b

Please sign in to comment.