-
Notifications
You must be signed in to change notification settings - Fork 489
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use ipld-explorer-components@8.1.0 (#2283)
* feat: use latest ipld-explorer-components * fix: unit tests pass * fix: e2e tests work * fix: update ipld-explorer-components patch * fix: storybook ci tests pass * chore: fix dep-check * feat: use latest ipld-explorer-components * feat: use latest ipld-explorer-components * feat: resolve button types issue * chore: fix depcheck * test: fix storybook tests * chore: attempt to fix fleek deploy * test: stop using react-rewired-esm for unit tests * test: use kubo standard ports for e2e tests * chore: use ipld-explorer-components@8.1.0 * chore: use node lts version replaces #2259
- Loading branch information
Showing
63 changed files
with
30,907 additions
and
30,276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
module.exports = { | ||
presets: ['@babel/preset-react'] | ||
presets: ['@babel/env', '@babel/preset-react', '@babel/preset-typescript'] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/** @type {import('jest').Config} */ | ||
// eslint-disable-next-line import/no-anonymous-default-export | ||
export default { | ||
testMatch: [ | ||
'**/__tests__/**/*.[jt]s?(x)', | ||
'**/?(*.)+(spec|test).[jt]s?(x)' | ||
], | ||
testPathIgnorePatterns: [ | ||
'/node_modules/', | ||
'/test/e2e' | ||
], | ||
testEnvironment: 'jsdom', | ||
setupFiles: ['<rootDir>/src/setupTests.js', 'fake-indexeddb/auto'], | ||
moduleNameMapper: { | ||
// ...config.moduleNameMapper, | ||
'^dnd-core$': 'dnd-core/dist/cjs', | ||
'^react-dnd$': 'react-dnd/dist/cjs', | ||
'^react-dnd-html5-backend$': 'react-dnd-html5-backend/dist/cjs', | ||
'multiformats/basics': '<rootDir>/node_modules/multiformats/dist/src/basics.js', | ||
'multiformats/bases/base32': '<rootDir>/node_modules/multiformats/dist/src/bases/base32.js', | ||
'multiformats/bases/base58': '<rootDir>/node_modules/multiformats/dist/src/bases/base58.js', | ||
'multiformats/cid': '<rootDir>/node_modules/multiformats/dist/src/cid.js', | ||
'multiformats/hashes/digest': '<rootDir>/node_modules/multiformats/dist/src/hashes/digest.js', | ||
'multiformats/hashes/sha2': '<rootDir>/node_modules/multiformats/dist/src/hashes/sha2.js', | ||
'uint8arrays/alloc': '<rootDir>/node_modules/uint8arrays/dist/src/alloc.js', | ||
'uint8arrays/concat': '<rootDir>/node_modules/uint8arrays/dist/src/concat.js', | ||
'uint8arrays/equals': '<rootDir>/node_modules/uint8arrays/dist/src/equals.js', | ||
'uint8arrays/from-string': '<rootDir>/node_modules/uint8arrays/dist/src/from-string.js', | ||
'uint8arrays/to-string': '<rootDir>/node_modules/uint8arrays/dist/src/to-string.js', | ||
'@chainsafe/is-ip/parse': '<rootDir>/node_modules/@chainsafe/is-ip/lib/parse.js', | ||
// eslint-disable-next-line quote-props | ||
'eventemitter3': '<rootDir>/node_modules/eventemitter3/dist/eventemitter3.esm.js', | ||
'cheerio/lib/utils': '<rootDir>/node_modules/cheerio/dist/commonjs/utils.js', | ||
'@ipld/dag-pb': '<rootDir>/node_modules/@ipld/dag-pb/src/index.js', | ||
'@multiformats/multiaddr': '<rootDir>/node_modules/@multiformats/multiaddr/dist/src/index.js', | ||
'uint8-varint': '<rootDir>/node_modules/uint8-varint/dist/src/index.js', | ||
'@chainsafe/netmask': '<rootDir>/node_modules/@chainsafe/netmask/dist/src/index.js', | ||
'@chainsafe/is-ip': '<rootDir>/node_modules/@chainsafe/is-ip/lib/is-ip.js', | ||
'\\.(css|less|scss|sass)$': 'identity-obj-proxy' | ||
}, | ||
transform: { | ||
'^.+\\.[tj]sx?$': 'babel-jest' | ||
}, | ||
transformIgnorePatterns: [ | ||
'node_module/(?!(eventemitter3)/).+\\.(js|jsx|mjs|cjs|ts|tsx)$', | ||
'^.+\\.module\\.(css|sass|scss)$' // default | ||
] | ||
|
||
} |
Oops, something went wrong.