Skip to content

Commit

Permalink
fix: npm root package name
Browse files Browse the repository at this point in the history
  • Loading branch information
amitksingh1490 committed Jun 11, 2024
1 parent a5e2139 commit 71cd051
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,6 @@ jobs:
uses: JS-DevTools/npm-publish@main
with:
token: ${{ secrets.NPM_TOKEN }}
name: "@tailcallhq/tailcall"
package: npm/@tailcallhq/tailcall
access: public
- name: Run generate-root.js script
Expand All @@ -526,7 +525,6 @@ jobs:
uses: JS-DevTools/npm-publish@main
with:
token: ${{ secrets.NPM_TOKEN }}
name: graphql-runtime
package: npm/@tailcallhq/tailcall
access: public
- name: Run generate-root.js script
Expand All @@ -539,7 +537,6 @@ jobs:
uses: JS-DevTools/npm-publish@main
with:
token: ${{ secrets.NPM_TOKEN }}
name: graphql-core
package: npm/@tailcallhq/tailcall
access: public
- name: Run generate-root.js script
Expand All @@ -552,7 +549,6 @@ jobs:
uses: JS-DevTools/npm-publish@main
with:
token: ${{ secrets.NPM_TOKEN }}
name: "@tailcallhq/graphql"
package: npm/@tailcallhq/tailcall
access: public
- name: Run generate-root.js script
Expand All @@ -565,7 +561,6 @@ jobs:
uses: JS-DevTools/npm-publish@main
with:
token: ${{ secrets.NPM_TOKEN }}
name: graphql-runkit
package: npm/@tailcallhq/tailcall
access: public
env:
Expand Down
1 change: 1 addition & 0 deletions src/core/blueprint/blueprint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ pub enum Definition {
Union(UnionTypeDefinition),
}
impl Definition {
/// gets the name of the definition
pub fn name(&self) -> &str {
match self {
Definition::Interface(def) => &def.name,
Expand Down

1 comment on commit 71cd051

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Running 30s test @ http://localhost:8000/graphql

4 threads and 100 connections

Thread Stats Avg Stdev Max +/- Stdev
Latency 6.60ms 2.94ms 71.01ms 71.58%
Req/Sec 3.83k 188.84 4.44k 92.75%

457634 requests in 30.01s, 2.29GB read

Requests/sec: 15247.82

Transfer/sec: 78.26MB

Please sign in to comment.