summaryrefslogtreecommitdiff
path: root/examples/tailwindcss
diff options
context:
space:
mode:
authorGravatar Nate Moore <natemoo-re@users.noreply.github.com> 2021-04-26 16:54:20 -0500
committerGravatar GitHub <noreply@github.com> 2021-04-26 15:54:20 -0600
commitdea1a6dfc9dec54034d2b872b4cd36c0174814c6 (patch)
tree49569a511201b4defc23b6654b475e458452596a /examples/tailwindcss
parent0ea4a986e207238bf0ac1db841b2a5d5b567d84d (diff)
downloadastro-dea1a6dfc9dec54034d2b872b4cd36c0174814c6.tar.gz
astro-dea1a6dfc9dec54034d2b872b4cd36c0174814c6.tar.zst
astro-dea1a6dfc9dec54034d2b872b4cd36c0174814c6.zip
Update defaults directory structure to `src` and `dist` (#132)
* chore: update defaults in docs * chore: update config defaults * test: update tests to config defaults * chore: update gitignore to new defaults * docs: update readme to new defaults * chore: update examples to new defaults * chore: update default exclude in lang server * chore: update tests * test: fix failing tests * chore: update www defaults
Diffstat (limited to 'examples/tailwindcss')
-rw-r--r--examples/tailwindcss/.gitignore2
-rw-r--r--examples/tailwindcss/README.md2
-rw-r--r--examples/tailwindcss/src/components/Button.astro (renamed from examples/tailwindcss/astro/components/Button.astro)0
-rw-r--r--examples/tailwindcss/src/pages/index.astro (renamed from examples/tailwindcss/astro/pages/index.astro)0
-rw-r--r--examples/tailwindcss/tailwind.config.js2
5 files changed, 3 insertions, 3 deletions
diff --git a/examples/tailwindcss/.gitignore b/examples/tailwindcss/.gitignore
index ca35be08d..1521c8b76 100644
--- a/examples/tailwindcss/.gitignore
+++ b/examples/tailwindcss/.gitignore
@@ -1 +1 @@
-_site
+dist
diff --git a/examples/tailwindcss/README.md b/examples/tailwindcss/README.md
index e16be0504..dd96562bd 100644
--- a/examples/tailwindcss/README.md
+++ b/examples/tailwindcss/README.md
@@ -20,4 +20,4 @@ Preview at `http://localhost:3000`
npm build
```
-Will output static site at `./_site`
+Will output static site at `./dist`
diff --git a/examples/tailwindcss/astro/components/Button.astro b/examples/tailwindcss/src/components/Button.astro
index ac13d7a49..ac13d7a49 100644
--- a/examples/tailwindcss/astro/components/Button.astro
+++ b/examples/tailwindcss/src/components/Button.astro
diff --git a/examples/tailwindcss/astro/pages/index.astro b/examples/tailwindcss/src/pages/index.astro
index e062f1f5b..e062f1f5b 100644
--- a/examples/tailwindcss/astro/pages/index.astro
+++ b/examples/tailwindcss/src/pages/index.astro
diff --git a/examples/tailwindcss/tailwind.config.js b/examples/tailwindcss/tailwind.config.js
index 279237052..9b380cc46 100644
--- a/examples/tailwindcss/tailwind.config.js
+++ b/examples/tailwindcss/tailwind.config.js
@@ -1,4 +1,4 @@
module.exports = {
mode: 'jit',
- purge: ['./public/**/*.html', './astro/**/*.{astro,js,jsx,ts,tsx,vue}'],
+ purge: ['./public/**/*.html', './src/**/*.{astro,js,jsx,ts,tsx,vue}'],
};