File tree 3 files changed +19
-2
lines changed
3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @adam.plesnik/tailwindcss-scroll-driven-animations" ,
3
- "version" : " 0.0.8 " ,
3
+ "version" : " 0.0.9 " ,
4
4
"author" :
" Adam Plesnik <[email protected] >" ,
5
5
"scripts" : {
6
6
"build" : " swc ./src/index.js --out-dir ./dist"
Original file line number Diff line number Diff line change 1
1
import plugin from 'tailwindcss/plugin'
2
2
3
- module . exports = plugin (
3
+ export = plugin (
4
4
function ( { matchUtilities, theme } ) {
5
5
matchUtilities (
6
6
{
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "allowJs" : true ,
4
+ "declaration" : true ,
5
+ "declarationDir" : " dist" ,
6
+ "declarationMap" : false ,
7
+ "esModuleInterop" : true ,
8
+ "lib" : [" ES2020" ],
9
+ "module" : " CommonJS" ,
10
+ "moduleResolution" : " node" ,
11
+ "outDir" : " dist" ,
12
+ "strict" : true ,
13
+ "stripInternal" : true ,
14
+ "target" : " es2020"
15
+ },
16
+ "include" : [" ./src/index.ts" ]
17
+ }
You can’t perform that action at this time.
0 commit comments