Upgrade to Tailwind CSS v2 (#133)

* Upgrade to Tailwind CSS v2

* Remove unneccessary PurgeCSS comment

* Remove postcss-import

* Add .nvmrc, so the correct version of Node is used in Netlify environment

* Add engines key to package.json
This commit is contained in:
Taylor Bryant 2020-12-26 11:43:06 -06:00 committed by GitHub
parent 9f574e01cb
commit 849029b9ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 608 additions and 260 deletions

1
.nvmrc Normal file
View File

@ -0,0 +1 @@
12

View File

@ -4,31 +4,31 @@ GEM
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
colorator (1.1.0)
concurrent-ruby (1.1.6)
em-websocket (0.5.1)
concurrent-ruby (1.1.7)
em-websocket (0.5.2)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
eventmachine (1.2.7)
ffi (1.13.1)
ffi (1.14.2)
forwardable-extended (2.6.0)
http_parser.rb (0.6.0)
i18n (1.8.3)
i18n (1.8.5)
concurrent-ruby (~> 1.0)
jekyll (4.1.1)
jekyll (4.2.0)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
i18n (~> 1.0)
jekyll-sass-converter (~> 2.0)
jekyll-watch (~> 2.0)
kramdown (~> 2.1)
kramdown (~> 2.3)
kramdown-parser-gfm (~> 1.0)
liquid (~> 4.0)
mercenary (~> 0.4.0)
pathutil (~> 0.9)
rouge (~> 3.0)
safe_yaml (~> 1.0)
terminal-table (~> 1.8)
terminal-table (~> 2.0)
jekyll-sass-converter (2.1.0)
sassc (> 2.0.1, < 3.0)
jekyll-watch (2.2.1)
@ -38,22 +38,22 @@ GEM
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.3)
listen (3.2.1)
listen (3.3.3)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.4.0)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (4.0.5)
public_suffix (4.0.6)
rb-fsevent (0.10.4)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.4)
rouge (3.20.0)
rouge (3.26.0)
safe_yaml (1.0.5)
sassc (2.4.0)
ffi (~> 1.9)
terminal-table (1.8.0)
terminal-table (2.0.0)
unicode-display_width (~> 1.1, >= 1.1.1)
unicode-display_width (1.7.0)

View File

@ -8,5 +8,5 @@
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/style.css" />
</head>
<body></body>
<body>
</html>

View File

@ -4,7 +4,7 @@
{% include header.html %}
<main
class="bg-teal-500 flex h-screen items-center justify-center w-full"
class="bg-indigo-500 flex h-screen items-center justify-center w-full"
>
{{ content }}
</main>

827
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,7 @@
"description": "A starter kit for using Tailwind with Jekyll",
"main": "gulpfile.babel.js",
"devDependencies": {
"autoprefixer": "9.8.6",
"autoprefixer": "10.1.0",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"browser-sync": "2.26.13",
@ -12,9 +12,13 @@
"cross-spawn": "7.0.3",
"cssnano": "4.1.10",
"gulp": "4.0.2",
"gulp-postcss": "8.0.0",
"postcss-import": "12.0.1",
"tailwindcss": "1.9.6"
"gulp-postcss": "9.0.0",
"postcss": "8.2.1",
"postcss-import": "14.0.0",
"tailwindcss": "2.0.2"
},
"engines": {
"node": "12"
},
"scripts": {
"build:production": "cross-env NODE_ENV=production gulp",

View File

@ -1,5 +1,3 @@
/* purgecss start ignore */
@tailwind base;
@tailwind components;
/* purgecss end ignore */
@tailwind utilities;