File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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+ - ...
You can’t perform that action at this time.
0 commit comments