@telegraph/postcss-config 0.0.8 → 0.0.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @telegraph/postcss-config
2
2
 
3
+ ## 0.0.9
4
+
5
+ ### Patch Changes
6
+
7
+ - [#48](https://github.com/knocklabs/telegraph/pull/48) [`14e9b48`](https://github.com/knocklabs/telegraph/commit/14e9b484a99b9e40460a91350297fefa9e98abd2) Thanks [@kylemcd](https://github.com/kylemcd)! - removes tailwind config file declaration
8
+
3
9
  ## 0.0.8
4
10
 
5
11
  ### Patch Changes
@@ -1 +1 @@
1
- {"version":3,"file":"postcss-config.d.ts","sourceRoot":"","sources":["../src/postcss-config.ts"],"names":[],"mappings":";;;AAEA,wBAUE"}
1
+ {"version":3,"file":"postcss-config.d.ts","sourceRoot":"","sources":["../src/postcss-config.ts"],"names":[],"mappings":";;;AAAA,wBAOE"}
@@ -1,15 +1,8 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
2
  Object.defineProperty(exports, "__esModule", { value: true });
6
- const tailwind_config_1 = __importDefault(require("@telegraph/tailwind-config"));
7
3
  exports.default = {
8
4
  plugins: [
9
- // eslint-disable-next-line @typescript-eslint/no-var-requires
10
- require("tailwindcss")({
11
- config: tailwind_config_1.default,
12
- }),
5
+ require("tailwindcss"),
13
6
  require("postcss-combine-duplicated-selectors"),
14
7
  require("postcss-discard-empty"),
15
8
  require("autoprefixer"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telegraph/postcss-config",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "author": "@knocklabs",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/knocklabs/telegraph/tree/main/packages/postcss-config",
@@ -18,7 +18,6 @@
18
18
  "format:check": "prettier \"src/**/*.{js,ts,tsx}\" --check"
19
19
  },
20
20
  "dependencies": {
21
- "@telegraph/tailwind-config": "^0.0.8",
22
21
  "autoprefixer": "^10.4.17",
23
22
  "postcss": "^8.4.33",
24
23
  "postcss-combine-duplicated-selectors": "^10.0.3",