@telegraph/postcss-config 0.0.5 → 0.0.7

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,23 @@
1
1
  # @telegraph/postcss-config
2
2
 
3
+ ## 0.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#36](https://github.com/knocklabs/telegraph/pull/36) [`06bf439`](https://github.com/knocklabs/telegraph/commit/06bf439773d05154e9cc4a6523382a73330c4060) Thanks [@kylemcd](https://github.com/kylemcd)! - adds documentation via the readme file
8
+
9
+ - Updated dependencies [[`06bf439`](https://github.com/knocklabs/telegraph/commit/06bf439773d05154e9cc4a6523382a73330c4060)]:
10
+ - @telegraph/tailwind-config@0.0.7
11
+
12
+ ## 0.0.6
13
+
14
+ ### Patch Changes
15
+
16
+ - [#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
17
+
18
+ - Updated dependencies [[`05bd163`](https://github.com/knocklabs/telegraph/commit/05bd1637a93ede8b3ad13c6943c5e454114fca32), [`572641b`](https://github.com/knocklabs/telegraph/commit/572641b5eb828f06110a0d573dae8b43e6c33cf1)]:
19
+ - @telegraph/tailwind-config@0.0.6
20
+
3
21
  ## 0.0.5
4
22
 
5
23
  ### Patch Changes
package/README.md CHANGED
@@ -1,3 +1,14 @@
1
+ ![Telegraph by Knock](https://github.com/knocklabs/telegraph/assets/29106675/9b5022e3-b02c-4582-ba57-3d6171e45e44)
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@telegraph/postcss-config.svg)](https://www.npmjs.com/package/@telegraph/postcss-config)
4
+
1
5
  # @telegraph/postcss-config
6
+ > Shared `PostCSS` config for internal use in the telegraph project.
7
+
8
+
9
+ ### Installation Instructions
10
+
11
+ ```
12
+ npm install @telegraph/postcss-config
13
+ ```
2
14
 
3
- Shared `PostCSS` config for internal use in the telegraph project.
@@ -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.7",
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.7",
22
22
  "autoprefixer": "^10.4.17",
23
23
  "postcss": "^8.4.33",
24
24
  "postcss-combine-duplicated-selectors": "^10.0.3",
@@ -28,7 +28,7 @@
28
28
  "devDependencies": {
29
29
  "@knocklabs/eslint-config": "^0.0.3",
30
30
  "@knocklabs/typescript-config": "^0.0.2",
31
- "@telegraph/prettier-config": "^0.0.5",
31
+ "@telegraph/prettier-config": "^0.0.6",
32
32
  "eslint": "^8.56.0",
33
33
  "typescript": "^5.3.3"
34
34
  }