Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bootstrap e2e tests #23

Merged
merged 13 commits into from
Apr 16, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
enable-pre-post-scripts = true
dan-lee marked this conversation as resolved.
Show resolved Hide resolved
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "graphqlsp",
"version": "0.2.0",
"name": "@0no-co/graphqlsp",
dan-lee marked this conversation as resolved.
Show resolved Hide resolved
"version": "0.1.0",
"description": "TypeScript LSP plugin that finds GraphQL documents in your code and provides hints and auto-generates types.",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"scripts": {
"build": "rollup -c ./scripts/build.mjs",
"prepare": "husky install",
"dev": "pnpm --filter @0no-co/graphqlsp dev",
"launch-debug": "./scripts/launch-debug.sh"
"launch-debug": "./scripts/launch-debug.sh",
"test:e2e": "vitest run"
dan-lee marked this conversation as resolved.
Show resolved Hide resolved
},
"prettier": {
"singleQuote": true,
Expand All @@ -28,6 +29,7 @@
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"rollup": "^3.20.2",
"typescript": "^5.0.0"
"typescript": "^5.0.0",
"vitest": "^0.30.1"
}
}
1 change: 1 addition & 0 deletions packages/graphqlsp/.npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
src
test
node_modules
scripts
example
Expand Down
Loading