Skip to content

Commit 60bf4d1

Browse files
committed
chore: move to circleci
1 parent 27b841c commit 60bf4d1

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

.circleci/config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node
6+
steps:
7+
- checkout
8+
- run: sudo npm install -g yarn semantic-release
9+
- run: yarn install
10+
- run: yarn test
11+
- run: semantic-release

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# http-link-dataloader [![npm version](https://badge.fury.io/js/http-link-dataloader.svg)](https://badge.fury.io/js/http-link-dataloader)
1+
# http-link-dataloader
2+
3+
[![CircleCI](https://circleci.com/gh/graphcool/http-link-loader.svg?style=shield)](https://circleci.com/gh/graphcool/http-link-loader) [![npm version](https://badge.fury.io/js/http-link-dataloader.svg)](https://badge.fury.io/js/http-link-dataloader)
24

35
📚📡 HTTP Apollo Link with batching & caching provided by dataloader.
46

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "http-link-dataloader",
3-
"version": "0.1.2",
3+
"version": "0.0.0-semantic-release",
44
"main": "dist/src/index.js",
55
"typings": "./dist/src/index.d.ts",
66
"files": [
@@ -24,7 +24,7 @@
2424
},
2525
"homepage": "https://github.com/graphcool/http-link-dataloader",
2626
"scripts": {
27-
"prepublish": "npm run build",
27+
"prepare": "npm run build",
2828
"build": "rm -rf dist && tsc -d",
2929
"lint": "tslint --type-check --project tsconfig.json {src,test}/**/*.ts",
3030
"test": "npm run lint && npm run build && ava --serial"

0 commit comments

Comments
 (0)