Skip to content

Commit

Permalink
Bump Bob (#489)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela committed Apr 3, 2020
1 parent 382b9bc commit 2f69095
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 5,202 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/canary.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
id: yarn-cache
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
key: ${{ runner.os }}-yarn-${{ hashFiles('package.json') }}

- name: Install
run: yarn
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
id: yarn-cache
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
key: ${{ runner.os }}-yarn-${{ hashFiles('package.json') }}

- name: Install
run: yarn
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -6,4 +6,6 @@ dist/
public/
*.map
out.txt
.now
.now
yarn.lock
package-lock.json
1 change: 1 addition & 0 deletions bob.config.js
@@ -0,0 +1 @@
module.exports = {}
31 changes: 16 additions & 15 deletions package.json
Expand Up @@ -16,8 +16,8 @@
"prepublishOnly": "yarn build",
"clean": "rimraf dist",
"prebuild": "yarn clean",
"build": "bob",
"prepack": "bob-update-version",
"build": "bob build --single",
"prepack": "bob prepack",
"now-build": "(cd website && yarn && yarn build && mv build ../public)",
"format": "prettier --write \"{src,test}/**/*.{ts,graphql}\"",
"lint": "eslint \"{src,test}/**/*.ts\"",
Expand All @@ -33,28 +33,29 @@
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
},
"dependencies": {
"@graphql-toolkit/common": "~0.10.1",
"@graphql-toolkit/core": "~0.10.1",
"@graphql-toolkit/graphql-file-loader": "~0.10.1",
"@graphql-toolkit/json-file-loader": "~0.10.1",
"@graphql-toolkit/schema-merging": "~0.10.1",
"@graphql-toolkit/url-loader": "~0.10.1",
"@graphql-toolkit/common": "~0.10.2",
"@graphql-toolkit/core": "~0.10.2",
"@graphql-toolkit/graphql-file-loader": "~0.10.2",
"@graphql-toolkit/json-file-loader": "~0.10.2",
"@graphql-toolkit/schema-merging": "~0.10.2",
"@graphql-toolkit/url-loader": "~0.10.2",
"cosmiconfig": "6.0.0",
"globby": "11.0.0",
"minimatch": "3.0.4"
"minimatch": "3.0.4",
"tslib": "^1.11.1"
},
"devDependencies": {
"@graphql-toolkit/common": "0.10.1",
"@graphql-toolkit/core": "0.10.1",
"@graphql-toolkit/graphql-file-loader": "0.10.1",
"@graphql-toolkit/json-file-loader": "0.10.1",
"@graphql-toolkit/schema-merging": "0.10.1",
"@graphql-toolkit/common": "0.10.2",
"@graphql-toolkit/core": "0.10.2",
"@graphql-toolkit/graphql-file-loader": "0.10.2",
"@graphql-toolkit/json-file-loader": "0.10.2",
"@graphql-toolkit/schema-merging": "0.10.2",
"@types/jest": "25.1.4",
"@types/nock": "11.1.0",
"@types/node": "13.9.8",
"@types/node-fetch": "2.5.5",
"@typescript-eslint/parser": "2.26.0",
"bob-the-bundler": "0.3.4",
"bob-the-bundler": "1.0.0-rc.1",
"del": "5.1.0",
"eslint": "6.8.0",
"graphql": "15.0.0",
Expand Down

0 comments on commit 2f69095

Please sign in to comment.