Skip to content

Commit 0a4f6ad

Browse files
authored
feat!: migrate to @helia/http (#419)
* feat: migrate to @helia/http * chore: deps and storybook fixes * deps: more dep cleanup * deps: eslint-config-ipfs * deps: babel * deps: filesize update * deps: ipfs-unixfs update * deps: rollup update * deps: cytoscape update * deps: i18next update * deps: @types/* update * deps: @ipld deps update * deps: @multiformats/sha3 update * test: test consumers * test: ensure test is ran in CI * test: remove consumer test for now webui windows is failing, see ipfs/ipfs-webui#2184
1 parent f9d4cdd commit 0a4f6ad

File tree

11 files changed

+22414
-15127
lines changed

11 files changed

+22414
-15127
lines changed

.aegir.js

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/** @type {import('aegir').PartialOptions} */
2+
module.exports = {
3+
dependencyCheck: {
4+
ignore: [
5+
// .jsx files aren't checked properly.
6+
'cytoscape',
7+
'cytoscape-dagre',
8+
'filesize',
9+
'react-inspector',
10+
'react-joyride',
11+
12+
// storybook deps
13+
'@storybook/addon-actions',
14+
'@storybook/addon-essentials',
15+
'@storybook/addon-interactions',
16+
'@storybook/addon-links',
17+
'@storybook/channels',
18+
'@storybook/core-common',
19+
'@storybook/core-events',
20+
'@storybook/csf-plugin',
21+
'@storybook/csf-tools',
22+
'@storybook/docs-tools',
23+
'@storybook/node-logger',
24+
'@storybook/react-dom-shim',
25+
'@storybook/types',
26+
27+
// problem with deps
28+
'@typescript-eslint/eslint-plugin'
29+
],
30+
productionIgnorePatterns: [
31+
'.aegir.js',
32+
'.eslintrc.js',
33+
'vite.config.ts',
34+
'vitest.config.js',
35+
'/test',
36+
'.storybook',
37+
'dist-vite'
38+
]
39+
}
40+
}

0 commit comments

Comments
 (0)