Skip to content

Commit

Permalink
Merge remote-tracking branch 'importer/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Feb 17, 2020
2 parents 943be9d + 96e64f6 commit 4b8fb44
Show file tree
Hide file tree
Showing 208 changed files with 55,909 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/ipfs-unixfs-importer/.aegir.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
'use strict'

module.exports = {
karma: {
browserNoActivityTimeout: 500 * 1000
}
}
45 changes: 45 additions & 0 deletions packages/ipfs-unixfs-importer/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
docs
yarn.lock
**/node_modules/
**/*.log
test/repo-tests*
**/bundle.js

# Logs
logs
*.log

coverage

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

build

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules

lib
dist
test/test-data/go-ipfs-repo/LOCK
test/test-data/go-ipfs-repo/LOG
test/test-data/go-ipfs-repo/LOG.old

# while testing npm5
package-lock.json
33 changes: 33 additions & 0 deletions packages/ipfs-unixfs-importer/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

.DS_Store
tests/repo-tests*

# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules

test
40 changes: 40 additions & 0 deletions packages/ipfs-unixfs-importer/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
language: node_js
cache: npm
stages:
- check
- test
- cov

node_js:
- '12'

os:
- linux
- osx
- windows

script: npx nyc -s npm run test:node -- --bail
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov

jobs:
include:
- stage: check
script:
- npx aegir commitlint --travis
- npx aegir dep-check
- npm run lint

- stage: test
name: chrome
addons:
chrome: stable
script: npx aegir test -t browser -t webworker

- stage: test
name: firefox
addons:
firefox: latest
script: npx aegir test -t browser -t webworker -- --browsers FirefoxHeadless

notifications:
email: false
Loading

0 comments on commit 4b8fb44

Please sign in to comment.