jekyll-theme-doctored 0.1.7 → 0.1.8

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/_config.yml +0 -4
  3. metadata +1 -2
  4. 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: 7e14e1878c76e7a5eeef8468551a3f0eba12a7ea3ba5319698071890483a76f6
4
+ data.tar.gz: 33424502c18536ad82542d1d372b1403c5f2e8df0c8636010a9687d7a0db9adb
5
5
  SHA512:
6
- metadata.gz: 59f5655ec395a4869c1b53284dff14d2ea1dd85519725b9a629ccae54fc765f5d06b51e071ae9d8b9c70e57d1d46c3ebe08841be7828b755093cedbf28a58d75
7
- data.tar.gz: 7d9503185a9354516708806d16b1da030295bbfa0de4baccab71093a51255177a7f1973c67c5a69bb3036fe0537c5f749100f204361a7513d6d1afa12634421a
6
+ metadata.gz: 86974a2166d51ab831ea0ae58bacaf89d6f48354d4d4217242217d10f4717db2667fd05d3e50ec48dd86c148c8181d93bfb18669a2448a625891eb7e333777e4
7
+ data.tar.gz: b7c7b83685b2b10490fd9d618986ac4ffbff3e1b064ebaf99e298d142a90ac1d1fb4bbcd94b9a139d4dec3e5fb293ec1783da3c37799585275ab29317b91f8e8
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
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.8
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
- };