Skip to content
This repository was archived by the owner on Mar 23, 2023. It is now read-only.

Commit 62adc6b

Browse files
committed
chore: update project config
1 parent 4332006 commit 62adc6b

File tree

3 files changed

+20
-94
lines changed

3 files changed

+20
-94
lines changed

.gitignore

+7-64
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,9 @@
1-
dist/
2-
3-
# Logs
4-
logs
5-
*.log
6-
npm-debug.log*
7-
yarn-debug.log*
8-
yarn-error.log*
9-
10-
# Runtime data
11-
pids
12-
*.pid
13-
*.seed
14-
*.pid.lock
15-
16-
# Directory for instrumented libs generated by jscoverage/JSCover
17-
lib-cov
18-
19-
# Coverage directory used by tools like istanbul
20-
coverage
21-
22-
# nyc test coverage
23-
.nyc_output
24-
25-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
26-
.grunt
27-
28-
# Bower dependency directory (https://bower.io/)
29-
bower_components
30-
31-
# node-waf configuration
32-
.lock-wscript
33-
34-
# Compiled binary addons (http://nodejs.org/api/addons.html)
35-
build/Release
36-
37-
# Dependency directories
38-
node_modules/
39-
jspm_packages/
40-
41-
# Typescript v1 declaration files
42-
typings/
43-
44-
# Optional npm cache directory
45-
.npm
46-
47-
# Optional eslint cache
48-
.eslintcache
49-
50-
# Optional REPL history
51-
.node_repl_history
52-
53-
# Output of 'npm pack'
54-
*.tgz
55-
56-
# Yarn Integrity file
57-
.yarn-integrity
58-
59-
# dotenv environment variables file
60-
.env
61-
62-
# while testing npm5
1+
node_modules
2+
build
3+
dist
4+
.docs
5+
.coverage
6+
node_modules
637
package-lock.json
648
yarn.lock
65-
types
66-
docs
9+
.vscode

README.md

+13-14
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
# datastore-fs <!-- omit in toc -->
22

3-
[![ipfs.io](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](http://ipfs.io)
4-
[![IRC](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs)
5-
[![Discord](https://img.shields.io/discord/806902334369824788?style=flat-square)](https://discord.gg/ipfs)
3+
[![ipfs.tech](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](https://ipfs.tech)
4+
[![Discuss](https://img.shields.io/discourse/https/discuss.ipfs.tech/posts.svg?style=flat-square)](https://discuss.ipfs.tech)
65
[![codecov](https://img.shields.io/codecov/c/github/ipfs/js-datastore-fs.svg?style=flat-square)](https://codecov.io/gh/ipfs/js-datastore-fs)
7-
[![CI](https://img.shields.io/github/workflow/status/ipfs/js-datastore-fs/test%20&%20maybe%20release/master?style=flat-square)](https://github.com/ipfs/js-datastore-fs/actions/workflows/js-test-and-release.yml)
6+
[![CI](https://img.shields.io/github/actions/workflow/status/ipfs/js-datastore-fs/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/ipfs/js-datastore-fs/actions/workflows/js-test-and-release.yml?query=branch%3Amaster)
87

98
> Datastore implementation with file system backend
109
1110
## Table of contents <!-- omit in toc -->
1211

1312
- [Install](#install)
1413
- [Usage](#usage)
15-
- [Contribute](#contribute)
14+
- [API Docs](#api-docs)
1615
- [License](#license)
17-
- [Contribute](#contribute-1)
16+
- [Contribute](#contribute)
1817

1918
## Install
2019

@@ -30,13 +29,9 @@ import { FSDatastore } from 'datastore-fs'
3029
const store = new FSDatastore('path/to/store')
3130
```
3231

33-
## Contribute
34-
35-
Feel free to join in. All welcome. Open an [issue](https://github.com/ipfs/js-datastore-fs/issues)!
32+
## API Docs
3633

37-
This repository falls under the IPFS [Code of Conduct](https://github.com/ipfs/community/blob/master/code-of-conduct.md).
38-
39-
[![](https://cdn.rawgit.com/jbenet/contribute-ipfs-gif/master/img/contribute.gif)](https://github.com/ipfs/community/blob/master/CONTRIBUTING.md)
34+
- <https://ipfs.github.io/js-datastore-fs>
4035

4136
## License
4237

@@ -47,8 +42,12 @@ Licensed under either of
4742

4843
## Contribute
4944

50-
Feel free to join in. All welcome. Open an [issue](https://github.com/ipfs/js-ipfs-unixfs-importer/issues)!
45+
Contributions welcome! Please check out [the issues](https://github.com/ipfs/js-datastore-fs/issues).
46+
47+
Also see our [contributing document](https://github.com/ipfs/community/blob/master/CONTRIBUTING_JS.md) for more information on how we work, and about contributing in general.
48+
49+
Please be aware that all interactions related to this repo are subject to the IPFS [Code of Conduct](https://github.com/ipfs/community/blob/master/code-of-conduct.md).
5150

52-
This repository falls under the IPFS [Code of Conduct](https://github.com/ipfs/community/blob/master/code-of-conduct.md).
51+
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
5352

5453
[![](https://cdn.rawgit.com/jbenet/contribute-ipfs-gif/master/img/contribute.gif)](https://github.com/ipfs/community/blob/master/CONTRIBUTING.md)

package.json

-16
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,6 @@
2525
},
2626
"type": "module",
2727
"types": "./dist/src/index.d.ts",
28-
"typesVersions": {
29-
"*": {
30-
"*": [
31-
"*",
32-
"dist/*",
33-
"dist/src/*",
34-
"dist/src/*/index"
35-
],
36-
"src/*": [
37-
"*",
38-
"dist/*",
39-
"dist/src/*",
40-
"dist/src/*/index"
41-
]
42-
}
43-
},
4428
"files": [
4529
"src",
4630
"dist",

0 commit comments

Comments
 (0)