Skip to content

Commit 3bab25c

Browse files
author
mcha
committed
init commit
0 parents  commit 3bab25c

6 files changed

Lines changed: 1433 additions & 0 deletions

File tree

.gitignore

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
.env
4+
.env.*
5+
!.env.example.json
6+
7+
# compiled output
8+
/dist
9+
/tmp
10+
/out-tsc
11+
# Only exists if Bazel was run
12+
/bazel-out
13+
14+
# dependencies
15+
/node_modules
16+
17+
# profiling files
18+
chrome-profiler-events*.json
19+
speed-measure-plugin*.json
20+
21+
# IDEs and editors
22+
/.idea
23+
.project
24+
.classpath
25+
.c9/
26+
*.launch
27+
.settings/
28+
*.sublime-workspace
29+
30+
# IDE - VSCode
31+
.vscode
32+
.idea
33+
.history/*
34+
35+
# misc
36+
/.sass-cache
37+
/connect.lock
38+
/coverage
39+
/libpeerconnection.log
40+
npm-debug.log
41+
yarn-error.log
42+
testem.log
43+
/typings
44+
jest/*.xml
45+
46+
# System Files
47+
.DS_Store
48+
Thumbs.db
49+
50+
# Cypress
51+
cypress/videos
52+
cypress/screenshots
53+
cypress/downloads
54+
cypress/integration/examples
55+
cypress/results/*
56+
!cypress/results/.gitkeep
57+

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# rollup-plugin-lit-tailwindcss
2+
3+
```js
4+
import litTw from 'rollup-plugin-lit-tailwindcss';
5+
6+
export default {
7+
input: 'src/index.ts',
8+
output: {
9+
dir: 'dist',
10+
},
11+
plugins: [
12+
litTw({ include: 'src/components/**/*.ts' }),
13+
],
14+
}
15+
```
16+
17+
18+
## Todos
19+
- is this performant?
20+
- tw seperator slash read tailwind config, styles.css?
21+
- ...

0 commit comments

Comments
 (0)