Skip to content

Commit

Permalink
Rename to gql.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Nov 21, 2023
1 parent 6b4c014 commit e61ffef
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<div align="center">
<h2>@0no-co/graphql.ts</h2>
<h2>gql.ts</h2>
<strong>The spec-compliant & magical GraphQL query language engine in the TypeScript type system</strong>
<br />
<br />
<a href="https://github.com/0no-co/graphql.ts/actions/workflows/release.yml">
<img alt="CI Status" src="https://github.com/0no-co/graphql.ts/actions/workflows/release.yml/badge.svg?branch=main" />
<a href="https://github.com/0no-co/gql.ts/actions/workflows/release.yml">
<img alt="CI Status" src="https://github.com/0no-co/gql.ts/actions/workflows/release.yml/badge.svg?branch=main" />
</a>
<a href="https://urql.dev/discord">
<img alt="Discord" src="https://img.shields.io/discord/1082378892523864074?color=7389D8&label&logo=discord&logoColor=ffffff" />
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@0no-co/graphql.ts",
"name": "gql.ts",
"description": "The spec-compliant & magical GraphQL query language engine in the TypeScript type system",
"version": "0.0.0",
"author": "0no.co <hi@0no.co>",
"source": "./src/index.ts",
"main": "./dist/graphql.ts",
"module": "./dist/graphql.ts.mjs",
"types": "./dist/graphql.ts.d.ts",
"main": "./dist/gql",
"module": "./dist/gql.mjs",
"types": "./dist/gql.d.ts",
"sideEffects": false,
"files": [
"LICENSE.md",
Expand All @@ -15,9 +15,9 @@
],
"exports": {
".": {
"types": "./dist/graphql.ts.d.ts",
"import": "./dist/graphql.ts.mjs",
"require": "./dist/graphql.ts.js",
"types": "./dist/gql.d.ts",
"import": "./dist/gql.mjs",
"require": "./dist/gql.js",
"source": "./src/index.ts"
},
"./package.json": "./package.json"
Expand Down
4 changes: 2 additions & 2 deletions scripts/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const output = format => {

const commonConfig = {
input: {
'graphql.web': './src/index.ts',
gql: './src/index.ts',
},
onwarn: () => {},
external: () => false,
Expand All @@ -137,7 +137,7 @@ const jsConfig = {
const dtsConfig = {
...commonConfig,
input: {
'graphql.web': './src/index.ts',
gql: './src/index.ts',
},
onwarn: () => {},
external: () => false,
Expand Down

0 comments on commit e61ffef

Please sign in to comment.