Skip to content

Commit f4bfedb

Browse files
committed
bump
1 parent 5d6e1c3 commit f4bfedb

File tree

5 files changed

+6
-14
lines changed

5 files changed

+6
-14
lines changed

packages/graphiql-plugin-code-exporter/vite.config.mts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default defineConfig({
1616
name: 'GraphiQLPluginCodeExporter',
1717
formats: IS_UMD ? ['umd'] : ['cjs', 'es'],
1818
// TODO: rename to index.css?
19-
cssFileName: 'style'
19+
cssFileName: 'style',
2020
},
2121
rollupOptions: {
2222
external: [

packages/graphiql-react/vite.config.mts

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default defineConfig({
3838
fileName: 'index',
3939
formats: ['cjs', 'es'],
4040
// TODO: rename to index.css?
41-
cssFileName: 'style'
41+
cssFileName: 'style',
4242
},
4343
rollupOptions: {
4444
external: [

packages/graphiql/postcss.config.js

-9
This file was deleted.

packages/graphiql/src/cdn.ts

-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ import { createGraphiQLFetcher, createLocalStorage } from '@graphiql/toolkit';
1111
import * as GraphQL from 'graphql';
1212
import { GraphiQL } from './GraphiQL';
1313

14-
import '@graphiql/react/font/roboto.css';
15-
import '@graphiql/react/font/fira-code.css';
16-
import '@graphiql/react/dist/style.css';
1714
import './style.css';
1815

1916
/**

packages/graphiql/src/style.css

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
@import '@graphiql/react/font/roboto.css';
2+
@import '@graphiql/react/font/fira-code.css';
3+
@import '@graphiql/react/dist/style.css';
4+
15
/* Everything */
26
.graphiql-container {
37
background-color: hsl(var(--color-base));

0 commit comments

Comments
 (0)