@telegraph/postcss-config 0.0.8 → 0.0.10

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,20 @@
1
1
  # @telegraph/postcss-config
2
2
 
3
+ ## 0.0.10
4
+
5
+ ### Patch Changes
6
+
7
+ - [`94c879e`](https://github.com/knocklabs/telegraph/commit/94c879ed645a7b9b1385c2232dfc0d182d20dad2) Thanks [@kylemcd](https://github.com/kylemcd)! - supporting layout and input components
8
+
9
+ - Updated dependencies [[`94c879e`](https://github.com/knocklabs/telegraph/commit/94c879ed645a7b9b1385c2232dfc0d182d20dad2)]:
10
+ - @telegraph/tokens@0.0.6
11
+
12
+ ## 0.0.9
13
+
14
+ ### Patch Changes
15
+
16
+ - [#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
17
+
3
18
  ## 0.0.8
4
19
 
5
20
  ### 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,wBAYE"}
@@ -1,17 +1,15 @@
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"),
9
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
10
+ require("@csstools/postcss-global-data")({
11
+ files: ["../tokens/dist/css/breakpoints.css"],
12
+ }),
13
+ require("postcss-custom-media"),
16
14
  ],
17
15
  };
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.10",
4
4
  "author": "@knocklabs",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/knocklabs/telegraph/tree/main/packages/postcss-config",
@@ -18,10 +18,12 @@
18
18
  "format:check": "prettier \"src/**/*.{js,ts,tsx}\" --check"
19
19
  },
20
20
  "dependencies": {
21
- "@telegraph/tailwind-config": "^0.0.8",
21
+ "@csstools/postcss-global-data": "^2.1.1",
22
+ "@telegraph/tokens": "^0.0.6",
22
23
  "autoprefixer": "^10.4.17",
23
24
  "postcss": "^8.4.33",
24
25
  "postcss-combine-duplicated-selectors": "^10.0.3",
26
+ "postcss-custom-media": "^10.0.3",
25
27
  "postcss-discard-empty": "^6.0.1",
26
28
  "tailwindcss": "^3.4.1"
27
29
  },