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

Commit 8f3d6b1

Browse files
committed
Move JS interface definition to a subdirectory
1 parent 56a0e8e commit 8f3d6b1

26 files changed

+9
-4
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ test.all(common)
8282
8383
## API
8484

85-
In order to be considered "valid", an IPFS core implementation must expose the API described in [/API](/API). You can also use this loose spec as documentation for consuming the core APIs. Here is an outline of the contents of that directory:
85+
In order to be considered "valid", an IPFS core implementation must expose the API described in [/SPEC](/SPEC). You can also use this loose spec as documentation for consuming the core APIs. Here is an outline of the contents of that directory:
8686

8787
- **Files**
8888
- [files](/SPEC/FILES.md)
@@ -102,6 +102,11 @@ In order to be considered "valid", an IPFS core implementation must expose the
102102
- [Miscellaneous](/SPEC/MISCELLANEOUS.md)
103103
- [config](/SPEC/CONFIG.md)
104104

105+
Language-specific interface definitions and tests are in their directories:
106+
107+
- [JavaScript](/js/src)
108+
- Go (WIP)
109+
105110
## Contribute
106111

107112
Feel free to join in. All welcome. Open an [issue](https://github.com/ipfs/interface-ipfs-core/issues)!
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "interface-ipfs-core",
33
"version": "0.41.1",
44
"description": "A test suite and interface you can use to implement a IPFS core interface.",
5-
"main": "src/index.js",
5+
"main": "js/src/index.js",
66
"scripts": {
77
"test": "exit 0",
88
"lint": "aegir lint",
@@ -13,8 +13,8 @@
1313
"coverage-publish": "exit 0"
1414
},
1515
"files": [
16-
"src/",
17-
"test/"
16+
"js/src/",
17+
"js/test/"
1818
],
1919
"repository": {
2020
"type": "git",

0 commit comments

Comments
 (0)