@telegraph/postcss-config 0.0.18 → 0.0.19

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.19
4
+
5
+ ### Patch Changes
6
+
7
+ - [#179](https://github.com/knocklabs/telegraph/pull/179) [`8861157`](https://github.com/knocklabs/telegraph/commit/8861157ed25d0f1cf35f0ecd233b8cfdbeeb80f3) Thanks [@kylemcd](https://github.com/kylemcd)! - add style engine post css config to allow for nesting in compiled css
8
+
3
9
  ## 0.0.18
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export { default as postCssConfig } from "./postcss-config";
2
+ export { default as styleEnginePostCssConfig } from "./style-engine-postcss-config";
2
3
  //# 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"}
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"}
package/dist/index.js CHANGED
@@ -3,6 +3,8 @@ 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.postCssConfig = void 0;
6
+ exports.styleEnginePostCssConfig = exports.postCssConfig = void 0;
7
7
  var postcss_config_1 = require("./postcss-config");
8
8
  Object.defineProperty(exports, "postCssConfig", { enumerable: true, get: function () { return __importDefault(postcss_config_1).default; } });
9
+ var style_engine_postcss_config_1 = require("./style-engine-postcss-config");
10
+ Object.defineProperty(exports, "styleEnginePostCssConfig", { enumerable: true, get: function () { return __importDefault(style_engine_postcss_config_1).default; } });
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ plugins: any[];
3
+ };
4
+ export default _default;
5
+ //# sourceMappingURL=style-engine-postcss-config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"style-engine-postcss-config.d.ts","sourceRoot":"","sources":["../src/style-engine-postcss-config.ts"],"names":[],"mappings":";;;AAAA,wBAWE"}
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ plugins: [
5
+ require("postcss-combine-duplicated-selectors"),
6
+ require("postcss-discard-empty"),
7
+ require("autoprefixer"),
8
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
9
+ require("@csstools/postcss-global-data")({
10
+ module: ["@telegraph/tokens/dist/css/breakpoints.css"],
11
+ }),
12
+ require("postcss-custom-media"),
13
+ ],
14
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telegraph/postcss-config",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "author": "@knocklabs",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/knocklabs/telegraph/tree/main/packages/postcss-config",