@telegraph/postcss-config 0.0.26 → 0.0.27

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,13 @@
1
1
  # @telegraph/postcss-config
2
2
 
3
+ ## 0.0.27
4
+
5
+ ### Patch Changes
6
+
7
+ - [#498](https://github.com/knocklabs/telegraph/pull/498) [`99e01e3`](https://github.com/knocklabs/telegraph/commit/99e01e3dcf7508af0bfae14e9b62cccff7af3388) Thanks [@kylemcd](https://github.com/kylemcd)! - update imports for the `Lucide` object from `@telegraph/icon` to import icons directly from `lucide-react` instead.
8
+
9
+ - [#497](https://github.com/knocklabs/telegraph/pull/497) [`2d3e1cd`](https://github.com/knocklabs/telegraph/commit/2d3e1cddd8a6bfac7108e350649f81bdc18f57c8) Thanks [@kylemcd](https://github.com/kylemcd)! - deprecate tailwind usage and migrate any remaining packages
10
+
3
11
  ## 0.0.26
4
12
 
5
13
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,3 +1,2 @@
1
- export { default as postCssConfig } from "./postcss-config";
2
1
  export { default as styleEnginePostCssConfig } from "./style-engine-postcss-config";
3
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,+BAA+B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,+BAA+B,CAAC"}
package/dist/index.js CHANGED
@@ -3,8 +3,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.styleEnginePostCssConfig = exports.postCssConfig = void 0;
7
- var postcss_config_1 = require("./postcss-config");
8
- Object.defineProperty(exports, "postCssConfig", { enumerable: true, get: function () { return __importDefault(postcss_config_1).default; } });
6
+ exports.styleEnginePostCssConfig = void 0;
9
7
  var style_engine_postcss_config_1 = require("./style-engine-postcss-config");
10
8
  Object.defineProperty(exports, "styleEnginePostCssConfig", { enumerable: true, get: function () { return __importDefault(style_engine_postcss_config_1).default; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telegraph/postcss-config",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "author": "@knocklabs",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/knocklabs/telegraph/tree/main/packages/postcss-config",
@@ -24,8 +24,7 @@
24
24
  "postcss": "^8.5.3",
25
25
  "postcss-combine-duplicated-selectors": "^10.0.3",
26
26
  "postcss-custom-media": "^11.0.1",
27
- "postcss-discard-empty": "^7.0.1",
28
- "tailwindcss": "^3.4.14"
27
+ "postcss-discard-empty": "^7.0.1"
29
28
  },
30
29
  "devDependencies": {
31
30
  "@knocklabs/eslint-config": "^0.0.4",
@@ -1,5 +0,0 @@
1
- declare const _default: {
2
- plugins: any[];
3
- };
4
- export default _default;
5
- //# sourceMappingURL=postcss-config.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"postcss-config.d.ts","sourceRoot":"","sources":["../src/postcss-config.ts"],"names":[],"mappings":";;;AAAA,wBAYE"}
@@ -1,15 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = {
4
- plugins: [
5
- require("tailwindcss"),
6
- require("postcss-combine-duplicated-selectors"),
7
- require("postcss-discard-empty"),
8
- require("autoprefixer"),
9
- // eslint-disable-next-line @typescript-eslint/no-var-requires
10
- require("@csstools/postcss-global-data")({
11
- module: ["@telegraph/tokens/dist/css/breakpoints.css"],
12
- }),
13
- require("postcss-custom-media"),
14
- ],
15
- };