Skip to content

Commit

Permalink
pointies
Browse files Browse the repository at this point in the history
  • Loading branch information
JoviDeCroock committed Feb 21, 2024
1 parent b7bbaf1 commit 1ec7d16
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"module": "./dist/gql-tada.mjs",
"types": "./dist/gql-tada.d.ts",
"sideEffects": false,
"bin": {
"gql-tada": "gql-tada"
},
"files": [
"LICENSE.md",
"README.md",
Expand All @@ -23,7 +26,8 @@
"./package.json": "./package.json"
},
"dependencies": {
"@0no-co/graphql.web": "^1.0.4"
"@0no-co/graphql.web": "^1.0.4",
"@gql-tada/cli": "0.1.0"
},
"public": true,
"keywords": [
Expand Down
17 changes: 14 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
{
"name": "@0no-co/gql-tada-cli",
"name": "@gql-tada/cli",
"version": "0.0.0",
"description": "A CLI tool to make working with gql.tada easier.",
"author": "0no.co <hi@0no.co>",
"sideEffects": false,
"source": "./src/index.ts",
"exports": {
".": {
"types": "./dist/gql-tada-cli.d.ts",
"import": "./dist/gql-tada-cli.mjs",
"require": "./dist/gql-tada-cli.js",
"source": "./src/index.ts"
},
"./package.json": "./package.json"
},
"bin": {
"gql-tada": "./dist/index.mjs"
"gql-tada": "./dist/gql-tada-cli.js"
},
"files": [
"CHANGELOG.md",
Expand All @@ -15,10 +25,11 @@
],
"license": "MIT",
"scripts": {
"build": "tsup"
"build": "rollup -c ../../scripts/rollup.config.mjs"
},
"devDependencies": {
"@types/node": "^20.11.0",
"rollup": "^4.9.4",
"tsup": "^8.0.2",
"type-fest": "^4.10.2",
"typescript": "^5.3.3"
Expand Down
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1ec7d16

Please sign in to comment.