Skip to content

Commit

Permalink
move demo files to public folder
Browse files Browse the repository at this point in the history
  • Loading branch information
heidkaemper committed Jun 20, 2024
1 parent ed76f0f commit 65ba4cd
Show file tree
Hide file tree
Showing 5 changed files with 589 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ yarn-debug.log*
yarn-error.log*

# misc
/dist/tailwind.css
/.build
/.idea
/.nvmrc
/.vscode
/dist
*.local
.DS_Store
.env
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"types": "src/index.d.ts",
"scripts": {
"watch": "npm run dev -- -w",
"dev": "tailwindcss -o dist/tailwind.css",
"dev": "tailwindcss -o public/tailwind.css",
"test": "jest --setupFilesAfterEnv '<rootDir>/jest/customMatchers.js'",
"eslint": "npx eslint {src,jest}/**",
"eslint:fix": "npx eslint {src,jest}/** --fix"
Expand Down
6 changes: 3 additions & 3 deletions index.html → public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tailwindcss-animated examples</title>
<link rel="stylesheet" href="dist/tailwind.css" />
<link rel="stylesheet" href="tailwind.css" />
</head>

<body>

<body class="p-8">
<h1 class="animate-bounce">Test file for development</h1>
</body>
</html>
Loading

0 comments on commit 65ba4cd

Please sign in to comment.