jekyll-theme-doctored 0.1.7 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/_config.yml +0 -4
  3. data/package.json +1 -1
  4. metadata +1 -2
  5. data/postcss.config.js +0 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bff553dad2c9997720abbf3d7c2600f004362cbf3504733bec6a8c128fd4e3ce
4
- data.tar.gz: f387ad545c6a376893b60d26fc2773b7a561634e9d9a99119d121d1ad67eabf7
3
+ metadata.gz: 01cfcc14bc0ae8df778049aaa72569840dcdef2d5f320f1aaec1d986866ca988
4
+ data.tar.gz: fb767d6c630b9cbac3a3d1d18858f1615ca9e8ea5fd40baf22e8f6cf45827372
5
5
  SHA512:
6
- metadata.gz: 59f5655ec395a4869c1b53284dff14d2ea1dd85519725b9a629ccae54fc765f5d06b51e071ae9d8b9c70e57d1d46c3ebe08841be7828b755093cedbf28a58d75
7
- data.tar.gz: 7d9503185a9354516708806d16b1da030295bbfa0de4baccab71093a51255177a7f1973c67c5a69bb3036fe0537c5f749100f204361a7513d6d1afa12634421a
6
+ metadata.gz: 5db4c32acc0ee91a1452a290d9a0ac56c9ac57d5fd4b9652ffb8a03b517b0d9cc4999bbf20283a70dfeb00329404cfc1b616c39440b3de848f59f91b7e880820
7
+ data.tar.gz: 9b3bcbfe4f81d54c27aafe0d136b2ce471ab684fe44e96830fa8f879a4210878437b2157f6ef2505c264c14679cf42fcd0a47e705116033542ce291eb5abf171
data/_config.yml CHANGED
@@ -35,16 +35,12 @@ exclude:
35
35
  - bin
36
36
  - node_modules
37
37
  - package-lock.json
38
- - postcss.config.js
39
38
  - tailwind.config.js
40
39
  - .github
41
40
 
42
41
  sass:
43
42
  sourcemap: never
44
43
 
45
- postcss:
46
- cache: false
47
-
48
44
  keep_files:
49
45
  - assets/css/tailwind.css
50
46
  - assetss/css/tailwind.css.map
data/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "scripts": {
13
13
  "postinstall": "bundle install",
14
14
  "dev": "bundle exec jekyll serve --watch",
15
- "build": "postcss assets/css/tailwind.css -o assets/css/main.css && python utils/postMarkdown.py && bundle exec jekyll build",
15
+ "build": "npx tailwindcss -i ./assets/css/tailwind.css -o ./assets/css/main.css --minify && python utils/postMarkdown.py && bundle exec jekyll build",
16
16
  "clean": "bundle exec jekyll clean",
17
17
  "doctor": "bundle exec jekyll doctor",
18
18
  "post": "python utils/postMarkdown.py"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-doctored
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - matmanna
@@ -150,7 +150,6 @@ files:
150
150
  - assets/js/scrollspy.js
151
151
  - assets/js/toggle-theme.js
152
152
  - package.json
153
- - postcss.config.js
154
153
  - tailwind.config.js
155
154
  homepage: https://matmanna.github.io/doctored
156
155
  licenses:
data/postcss.config.js DELETED
@@ -1,10 +0,0 @@
1
- module.exports = {
2
- plugins: [
3
- require('postcss-import'),
4
- require('tailwindcss'),
5
- require("autoprefixer"),
6
- ...(process.env.JEKYLL_ENV == "production"
7
- ? [require("cssnano")({ preset: "default" })]
8
- : [])
9
- ]
10
- };