Detection for mismatched monorepo deps (#444)

* Detection for mismatched monorepo deps

* Bump common
This commit is contained in:
Jaco Greeff
2021-02-28 11:23:11 +01:00
committed by GitHub
parent aa3d6803f7
commit 15c03c0aff
21 changed files with 184 additions and 149 deletions
+6 -3
View File
@@ -5,13 +5,16 @@
"author": "Jaco Greeff <jacogr@gmail.com>",
"maintainers": [],
"main": "index.js",
"sideEffects": false,
"sideEffects": [
"./detectPackage.js",
"./detectPackage.mjs"
],
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.13.7",
"@polkadot/ui-shared": "0.69.2-2",
"@polkadot/util": "^5.8.1",
"@polkadot/util-crypto": "^5.8.1",
"@polkadot/util": "^5.9.2",
"@polkadot/util-crypto": "^5.9.2",
"jdenticon": "3.1.0"
},
"peerDependencies": {
@@ -0,0 +1,9 @@
// Copyright 2017-2021 @polkadot/vue-identicon authors & contributors
// SPDX-License-Identifier: Apache-2.0
import { packageInfo as sharedInfo } from '@polkadot/ui-shared/packageInfo';
import { detectPackage } from '@polkadot/util';
import { packageInfo } from './packageInfo';
detectPackage(packageInfo, typeof __dirname !== 'undefined' && __dirname, [sharedInfo]);
+4
View File
@@ -1,6 +1,10 @@
// Copyright 2017-2021 @polkadot/vue-identicon authors & contributors
// SPDX-License-Identifier: Apache-2.0
import './detectPackage';
import { Identicon } from './Identicon';
export { packageInfo } from './packageInfo';
export default Identicon;