This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: deep imports are no longer possible
- Loading branch information
1 parent
cc096b0
commit 314d130
Showing
6 changed files
with
161 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,66 @@ | ||
yarn.lock | ||
package-lock.json | ||
**/node_modules/ | ||
**/*.log | ||
test/repo-tests* | ||
dist/ | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|
||
coverage | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
bower_components | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
build | ||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
|
||
# Typescript v1 declaration files | ||
typings/ | ||
|
||
# Dependency directory | ||
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git | ||
node_modules | ||
# Optional npm cache directory | ||
.npm | ||
|
||
lib | ||
dist | ||
docs | ||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# dotenv environment variables file | ||
.env | ||
|
||
# while testing npm5 | ||
package-lock.json | ||
yarn.lock | ||
types | ||
docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,21 +4,28 @@ | |
"description": "Datastore implementation with file system backend", | ||
"leadMaintainer": "Alex Potsides <[email protected]>", | ||
"main": "src/index.js", | ||
"types": "dist/src/index.d.ts", | ||
"types": "types/src/index.d.ts", | ||
"type": "module", | ||
"files": [ | ||
"src", | ||
"dist" | ||
"*", | ||
"!**/*.tsbuildinfo" | ||
], | ||
"browser": { | ||
"fs": false, | ||
"path": false, | ||
"util": false | ||
}, | ||
"scripts": { | ||
"prepare": "aegir build --no-bundle", | ||
"test": "aegir test -t node", | ||
"build": "aegir build", | ||
"lint": "aegir lint", | ||
"release": "aegir release -t node --build false", | ||
"release-minor": "aegir release --type minor -t node --build false", | ||
"release-major": "aegir release --type major -t node --build false", | ||
"coverage": "nyc -s npm run test:node && nyc report --reporter=html", | ||
"dep-check": "aegir dep-check" | ||
"clean": "rimraf dist types", | ||
"prepare": "aegir build --no-bundle && cp -R types dist", | ||
"lint": "aegir ts -p check && aegir lint", | ||
"build": "aegir build --no-bundle", | ||
"release": "aegir release --target node", | ||
"release-minor": "aegir release --type minor --target node", | ||
"release-major": "aegir release --type major --target node", | ||
"pretest": "aegir build --esm-tests", | ||
"test": "aegir test", | ||
"dep-check": "aegir dep-check -i rimraf" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -38,25 +45,30 @@ | |
}, | ||
"homepage": "https://github.com/ipfs/js-datastore-fs#readme", | ||
"dependencies": { | ||
"datastore-core": "^5.0.0", | ||
"datastore-core": "^6.0.5", | ||
"fast-write-atomic": "^0.2.0", | ||
"interface-datastore": "^5.1.1", | ||
"it-glob": "0.0.13", | ||
"interface-datastore": "^6.0.2", | ||
"it-glob": "^1.0.1", | ||
"it-map": "^1.0.5", | ||
"it-parallel-batch": "^1.0.9", | ||
"mkdirp": "^1.0.4" | ||
}, | ||
"devDependencies": { | ||
"aegir": "^34.0.2", | ||
"@types/mkdirp": "^1.0.2", | ||
"@types/rimraf": "^3.0.2", | ||
"aegir": "^35.0.3", | ||
"async-iterator-all": "^1.0.0", | ||
"detect-node": "^2.0.4", | ||
"interface-datastore-tests": "^1.0.0", | ||
"interface-datastore-tests": "^2.0.3", | ||
"ipfs-utils": "^8.1.3", | ||
"memdown": "^6.0.0", | ||
"rimraf": "^3.0.2" | ||
}, | ||
"eslintConfig": { | ||
"extends": "ipfs" | ||
"extends": "ipfs", | ||
"parserOptions": { | ||
"sourceType": "module" | ||
} | ||
}, | ||
"contributors": [ | ||
"achingbrain <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.