Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Commit 37864a8

Browse files
authored
feat: support UnixFSv1.5 metadata (#2621)
* feat: support UnixFSv1.5 metadata Adds metadata support. Specifying metadata: ```console $ jsipfs add --mode=0777 --mtime=100000 ./foo.txt ``` Respecting exsting metadata: ```console $ jsipfs add --preserve-mode --preserve-mtime ./foo.txt ``` Displaying metadata: ```console $ jsipfs ls Qmfoo -rw-r--r-- Nov 21, 2019, 09:46:23 AM CST bar.txt Qbar 0 ``` * chore: update dep paths and jsdocs * chore: fix linting * fix: expose metadata in http api * test: interface tests passing * chore: update package.json with branches * fix: support mtime as timespec * fix: check mtime formatting in timezone agnostic way * fix: do not run hrtime tests in the browser * chore: upgrade interop tests * chore: symlink ipfs dir for interop tests * fix: build ipfs before running examples * fix: expose mtime-nsecs to cli and add tests * fix: export path to js-ipfs binary * fix: support optional mtime * fix: linting * fix: pin datastore-pubsub version due to ipfs/js-datastore-pubsub#20 * chore: restore datastore-pubsub semver
1 parent 2c6d349 commit 37864a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

running-multiple-nodes/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const IPFS = require('ipfs')
3+
const IPFS = require('../../')
44

55
const execa = require('execa')
66
const os = require('os')

0 commit comments

Comments
 (0)