Merge pull request #32 from polkadot-js/jg-bumps

Bump deps
This commit is contained in:
Jaco Greeff 2019-08-09 15:06:35 +02:00 committed by GitHub
commit e23fa23e8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 1589 additions and 1130 deletions

21
.circleci/config.yml Normal file
View File

@ -0,0 +1,21 @@
version: 2
jobs:
build:
working_directory: ~/polkadot-js
docker:
- image: circleci/node:10
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "yarn.lock" }}
- run:
name: install-deps
command: yarn install --frozen-lockfile
- save_cache:
key: dependency-cache-{{ checksum "yarn.lock" }}
paths:
- ./node_modules
- ~/.cache/yarn
- run:
name: build
command: yarn polkadot-dev-circleci-build

View File

@ -9,4 +9,4 @@ cache:
directories:
- node_modules
script:
- yarn polkadot-dev-build-travis
- CI_NO_BETA=true yarn polkadot-dev-travis-build

View File

@ -1,3 +1,10 @@
[![polkadotjs](https://img.shields.io/badge/polkadot-js-orange.svg?style=flat-square)](https://polkadot.js.org)
![license](https://img.shields.io/github/license/polkadot-js/ts?style=flat-square)
[![npm](https://img.shields.io/npm/v/@polkadot/ts.svg?style=flat-square)](https://www.npmjs.com/package/@polkadot/ts)
[![travisci](https://img.shields.io/travis/com/polkadot-js/ts?label=travisci&style=flat-square)](https://travis-ci.com/polkadot-js/ts)
[![circleci](https://img.shields.io/circleci/build/github/polkadot-js/ts/master?label=circleci&style=flat-square)](https://circleci.com/gh/polkadot-js/ts)
[![greenkeeper](https://img.shields.io/badge/greenkeeper-enabled-brightgreen.svg?style=flat-square)](https://greenkeeper.io/)
# @polkadot/ts
TypeScript definitions for packages that are not (yet) available on [DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped) but are used in `@polkadot` projects.

View File

@ -11,7 +11,7 @@
},
"scripts": {
"build": "./build.sh",
"check": "tsc --noEmit --pretty",
"lint": "tsc --noEmit --pretty",
"test": "echo \"No 'yarn run test' available\""
},
"dependencies": {
@ -19,6 +19,6 @@
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@polkadot/dev": "0.25.13"
"@polkadot/dev": "^0.31.0-beta.1"
}
}

2685
yarn.lock

File diff suppressed because it is too large Load Diff