@telegraph/postcss-config 0.0.5 → 0.0.6

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,14 @@
1
1
  # @telegraph/postcss-config
2
2
 
3
+ ## 0.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [#31](https://github.com/knocklabs/telegraph/pull/31) [`05bd163`](https://github.com/knocklabs/telegraph/commit/05bd1637a93ede8b3ad13c6943c5e454114fca32) Thanks [@kylemcd](https://github.com/kylemcd)! - design tokens & tailwind config generated from design tokens
8
+
9
+ - Updated dependencies [[`05bd163`](https://github.com/knocklabs/telegraph/commit/05bd1637a93ede8b3ad13c6943c5e454114fca32), [`572641b`](https://github.com/knocklabs/telegraph/commit/572641b5eb828f06110a0d573dae8b43e6c33cf1)]:
10
+ - @telegraph/tailwind-config@0.0.6
11
+
3
12
  ## 0.0.5
4
13
 
5
14
  ### Patch Changes
@@ -1,11 +1,14 @@
1
1
  "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
2
5
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const tailwind_config_1 = require("@telegraph/tailwind-config");
6
+ const tailwind_config_1 = __importDefault(require("@telegraph/tailwind-config"));
4
7
  exports.default = {
5
8
  plugins: [
6
9
  // eslint-disable-next-line @typescript-eslint/no-var-requires
7
10
  require("tailwindcss")({
8
- config: tailwind_config_1.tailwindConfig,
11
+ config: tailwind_config_1.default,
9
12
  }),
10
13
  require("postcss-combine-duplicated-selectors"),
11
14
  require("postcss-discard-empty"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telegraph/postcss-config",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "author": "@knocklabs",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/knocklabs/telegraph/tree/main/packages/postcss-config",
@@ -18,7 +18,7 @@
18
18
  "format:check": "prettier \"src/**/*.{js,ts,tsx}\" --check"
19
19
  },
20
20
  "dependencies": {
21
- "@telegraph/tailwind-config": "^0.0.5",
21
+ "@telegraph/tailwind-config": "^0.0.6",
22
22
  "autoprefixer": "^10.4.17",
23
23
  "postcss": "^8.4.33",
24
24
  "postcss-combine-duplicated-selectors": "^10.0.3",