Skip to content

Commit 65c4a04

Browse files
committed
chore: restore prepare
1 parent ae7f64d commit 65c4a04

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ jobs:
4646
- stage: check
4747
name: linting
4848
script:
49-
- npm --version
5049
- npm run lint
5150

5251
- stage: check

packages/ipfs-unixfs-exporter/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"fs": false
99
},
1010
"scripts": {
11+
"prepare": "aegir build --no-bundle",
1112
"test": "aegir test",
1213
"build": "aegir build",
1314
"clean": "rimraf ./dist",

packages/ipfs-unixfs-importer/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"fs": false
99
},
1010
"scripts": {
11+
"prepare": "aegir build --no-bundle",
1112
"test": "aegir test",
1213
"build": "aegir build",
1314
"clean": "rimraf ./dist",

packages/ipfs-unixfs-importer/src/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ const parallelBatch = require('it-parallel-batch')
44
const defaultOptions = require('./options')
55

66
/**
7-
* @typedef {import('cids')} CID
8-
* @typedef {import('ipfs-unixfs').UnixFS} UnixFS
97
* @typedef {import('./types').BlockAPI} BlockAPI
108
* @typedef {import('./types').ImportCandidate} ImportCandidate
119
* @typedef {import('./types').UserImporterOptions} UserImporterOptions

packages/ipfs-unixfs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"scripts": {
1111
"prepare": "run-s prepare:*",
1212
"prepare:proto": "pbjs -t static-module -w commonjs --force-number --no-verify --no-delimited --no-create --no-beautify --no-defaults --lint eslint-disable -o src/unixfs.js ./src/unixfs.proto",
13-
"prepare:proto:types": "pbts -o src/unixfs.d.ts src/unixfs.js",
14-
"prepare:copy": "copy ./src/*.d.ts ./dist/src",
13+
"prepare:proto-types": "pbts -o src/unixfs.d.ts src/unixfs.js",
14+
"prepare:types": "aegir build --no-bundle",
1515
"test": "aegir test",
1616
"build": "aegir build",
1717
"clean": "rimraf ./dist",

0 commit comments

Comments
 (0)