-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
68 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import './input.css'; | ||
|
||
import { runAll } from './tests/test'; | ||
|
||
runAll() |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { provideBorder, provideColor, provideElevation, provideMotion, provideShape, provideSizing, provideTypography, provideWindowMediaQuery } from '../src/index' | ||
// import { provideBorder, provideColor, provideElevation, provideMotion, provideShape, provideSizing, provideTypography, provideWindowMediaQuery } from '../build' | ||
|
||
export const color = provideColor() | ||
export const elevation = provideElevation({}) | ||
export const motion = provideMotion() | ||
export const shape = provideShape() | ||
export const typo = provideTypography() | ||
export const border = provideBorder() | ||
export const mq = provideWindowMediaQuery() | ||
export const sizing = provideSizing() | ||
|
||
/** @type {import('tailwindcss').Config} */ | ||
export default { | ||
content: [ | ||
'./index.html', | ||
], | ||
plugins: [ | ||
color.getPlugin(), | ||
elevation.getPlugin(), | ||
motion.getPlugin(), | ||
shape.getPlugin(), | ||
typo.getPlugin(), | ||
border.getPlugin(), | ||
mq.getPlugin(), | ||
sizing.getPlugin(), | ||
], | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"outDir": "build", | ||
"skipLibCheck": true, | ||
"allowSyntheticDefaultImports": true, | ||
"moduleResolution": "bundler", | ||
"importHelpers": true, | ||
"isolatedModules": true, | ||
"esModuleInterop": true, | ||
"verbatimModuleSyntax": true, | ||
"useDefineForClassFields": true, | ||
"experimentalDecorators": true, | ||
"emitDecoratorMetadata": true, | ||
"target": "ES2022", | ||
"module": "ES2022", | ||
"lib": [ | ||
"ES2022" | ||
], | ||
"types": [ | ||
"vite/client" | ||
], | ||
}, | ||
"include": [ | ||
"./**/*.ts", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,5 +7,5 @@ export default defineConfig({ | |
outDir: '../docs', | ||
emptyOutDir: true, | ||
minify: true, | ||
} | ||
}) | ||
}, | ||
}) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.