@polkadot/networks 8.7.2-1 → 9.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/package.json +3 -1
- package/cjs/packageInfo.js +1 -1
- package/index.js +3 -0
- package/package.json +3 -3
- package/packageInfo.js +1 -1
package/cjs/package.json
CHANGED
package/cjs/packageInfo.js
CHANGED
package/index.js
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
// Copyright 2017-2022 @polkadot/networks authors & contributors
|
|
2
2
|
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
// TODO: This was removed, really cannot recall the reason...
|
|
4
|
+
// ... put it back, but keep it removed
|
|
5
|
+
// import './detectPackage';
|
|
3
6
|
export * from "./interfaces.js";
|
|
4
7
|
export { packageInfo } from "./packageInfo.js";
|
package/package.json
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"sideEffects": false,
|
|
19
19
|
"type": "module",
|
|
20
|
-
"version": "
|
|
20
|
+
"version": "9.0.1",
|
|
21
21
|
"main": "./cjs/index.js",
|
|
22
22
|
"module": "./index.js",
|
|
23
23
|
"types": "./index.d.ts",
|
|
@@ -87,8 +87,8 @@
|
|
|
87
87
|
}
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@babel/runtime": "^7.17.
|
|
91
|
-
"@polkadot/util": "
|
|
90
|
+
"@babel/runtime": "^7.17.9",
|
|
91
|
+
"@polkadot/util": "9.0.1",
|
|
92
92
|
"@substrate/ss58-registry": "^1.17.0"
|
|
93
93
|
}
|
|
94
94
|
}
|
package/packageInfo.js
CHANGED
|
@@ -5,5 +5,5 @@ export const packageInfo = {
|
|
|
5
5
|
name: '@polkadot/networks',
|
|
6
6
|
path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto',
|
|
7
7
|
type: 'esm',
|
|
8
|
-
version: '
|
|
8
|
+
version: '9.0.1'
|
|
9
9
|
};
|