Skip to content

Commit

Permalink
fix: update ci build command
Browse files Browse the repository at this point in the history
  • Loading branch information
hayes committed May 10, 2021
1 parent 3ba24d9 commit 7e1d1d2
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"build-esm": "ESM_BUILD=true yarn refs && ESM_BUILD=true beemo typescript --build --reference-workspaces && beemo create-config",
"build-deno": "yarn ts-node packages/deno/scripts/build.ts",
"clean": "rm -rf ./packages/*/{tsconfig.tsbuildinfo,lib,esm,commonjs} ./packages/deno/packages",
"ci": "yarn run type && yarn run test && yarn run lint",
"ci": "yarn run build && yarn run test && yarn run lint",
"coverage": "yarn run test --coverage",
"format": "beemo prettier",
"lint": "beemo eslint",
Expand Down
2 changes: 1 addition & 1 deletion packages/converter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@giraphql/converter",
"version": "2.2.2",
"version": "2.2.3-alpha.0",
"description": "A converter for generating GiraphQL SchemaBuilder code from GraphQL SDL",
"main": "./lib/index.js",
"module": "./esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@giraphql/core",
"version": "2.4.1",
"version": "2.4.2-alpha.0",
"description": "GiraphQL is a plugin based schema builder for creating code-first GraphQL schemas in typescript",
"main": "./lib/index.js",
"module": "./esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-dataloader/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@giraphql/plugin-dataloader",
"version": "2.1.1",
"version": "2.1.2-alpha.0",
"description": "A GiraphQL plugin for attaching dataloader to object types",
"main": "./lib/index.js",
"module": "./esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-directives/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@giraphql/plugin-directives",
"version": "2.1.1",
"version": "2.1.2-alpha.0",
"description": "Directive plugin for GiraphQL, enables using graphql-tools based directives with GiraphQL",
"main": "./lib/index.js",
"module": "./esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@giraphql/plugin-example",
"version": "2.1.1",
"version": "2.1.2-alpha.0",
"description": "An example plugin for GiraphQL",
"main": "./lib/index.js",
"module": "./esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-relay/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@giraphql/plugin-relay",
"version": "2.2.1",
"version": "2.2.2-alpha.0",
"description": "A GiraphQL plugin for adding relay style connections, nodes, and cursor based pagination to your GraphQL schema",
"main": "./lib/index.js",
"module": "./esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-scope-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@giraphql/plugin-scope-auth",
"version": "2.2.1",
"version": "2.2.2-alpha.0",
"description": "A GiraphQL plugin for adding scope based authorization checks to your GraphQL Schema",
"main": "./lib/index.js",
"module": "./esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-simple-objects/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@giraphql/plugin-simple-objects",
"version": "2.1.1",
"version": "2.1.2-alpha.0",
"description": "A GiraphQL plugin for defining objects and interfaces without ts definitions for those types",
"main": "./lib/index.js",
"module": "./esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-smart-subscriptions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@giraphql/plugin-smart-subscriptions",
"version": "2.2.1",
"version": "2.2.2-alpha.0",
"description": "A GiraphQL plugin for turning queries into subscriptions",
"main": "./lib/index.js",
"module": "./esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-sub-graph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@giraphql/plugin-sub-graph",
"version": "2.1.1",
"version": "2.1.2-alpha.0",
"description": "A GiraphQL plugin for creating multiple variants or sub-selections of the same graph",
"main": "./lib/index.js",
"module": "./esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-validation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@giraphql/plugin-validation",
"version": "2.3.1",
"version": "2.3.2-alpha.0",
"description": "A GiraphQL plugin for adding argument validation",
"main": "./lib/index.js",
"module": "./esm/index.js",
Expand Down

0 comments on commit 7e1d1d2

Please sign in to comment.