Bump deps (#189)

This commit is contained in:
Jaco Greeff
2019-08-27 14:16:38 +02:00
committed by GitHub
parent 88d0409a9b
commit 2c1dadc826
10 changed files with 775 additions and 814 deletions
+2 -2
View File
@@ -26,8 +26,8 @@
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@polkadot/dev-react": "^0.31.0-beta.3",
"@polkadot/ts": "^0.1.64",
"@polkadot/dev-react": "^0.31.0-beta.4",
"@polkadot/ts": "^0.1.68",
"babel-plugin-transform-vue-template": "^0.4.2",
"empty": "^0.10.1",
"gh-pages": "^2.1.1",
+1 -1
View File
@@ -31,7 +31,7 @@ export default class Demo extends React.PureComponent {
const rootElement = document.getElementById('demo');
if (!rootElement) {
throw new Error(`Unable to find element with id 'demo'`);
throw new Error('Unable to find element with id \'demo\'');
}
ReactDOM.render(<Demo />, rootElement);
+2 -2
View File
@@ -11,13 +11,13 @@
"dependencies": {
"@babel/runtime": "^7.5.5",
"@polkadot/ui-shared": "^0.43.0-beta.0",
"react-native-svg": "^9.5.3"
"react-native-svg": "^9.7.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"react-native": "^0.60.4"
"react-native": "^0.60.5"
}
}
+1 -1
View File
@@ -20,7 +20,7 @@
},
"devDependencies": {
"@polkadot/keyring": "^1.1.1",
"@polkadot/types": "^0.90.1",
"@polkadot/types": "^0.91.0-beta.2",
"@polkadot/util": "^1.1.1"
},
"peerDependencies": {
+1 -1
View File
@@ -56,7 +56,7 @@ export default class Base {
return this._keyring;
}
throw new Error(`Keyring should be initialised via 'loadAll' before use`);
throw new Error('Keyring should be initialised via \'loadAll\' before use');
}
public get genesisHash (): string | undefined {
+1 -1
View File
@@ -282,7 +282,7 @@ export class Keyring extends Base implements KeyringStruct {
const json = (available[address] && available[address].json) || {
address,
meta: {
isRecent: void 0,
isRecent: undefined,
whenCreated: Date.now()
}
};
@@ -14,10 +14,12 @@ interface Data {
* @description The Beachball identicon
*/
export const Beachball = Vue.extend({
// eslint-disable-next-line quotes
template: `<div v-html="html" />`,
props: ['address', 'size'],
data: function (): Data {
return {
// eslint-disable-next-line quotes
html: `<div />`
};
},
@@ -14,10 +14,12 @@ interface Data {
* @description The substrate default via Jdenticon
*/
export const Jdenticon = Vue.extend({
// eslint-disable-next-line quotes
template: `<div v-html="svgHtml" />`,
props: ['publicKey', 'size'],
data: function (): Data {
return {
// eslint-disable-next-line quotes
svgHtml: `<svg viewBox="0 0 64 64" />`
};
},
@@ -14,10 +14,12 @@ interface Data {
* @description The Polkadot default identicon
*/
export const Polkadot = Vue.extend({
// eslint-disable-next-line quotes
template: `<div v-html="svgHtml" />`,
props: ['address', 'size'],
data: function (): Data {
return {
// eslint-disable-next-line quotes
svgHtml: `<svg viewBox="0 0 64 64" />`
};
},
+761 -806
View File
File diff suppressed because it is too large Load Diff