@telegraph/postcss-config 0.0.18 → 0.0.20
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 +12 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/style-engine-postcss-config.d.ts +5 -0
- package/dist/style-engine-postcss-config.d.ts.map +1 -0
- package/dist/style-engine-postcss-config.js +13 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @telegraph/postcss-config
|
|
2
2
|
|
|
3
|
+
## 0.0.20
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#181](https://github.com/knocklabs/telegraph/pull/181) [`1197f66`](https://github.com/knocklabs/telegraph/commit/1197f6683e3a278c3f5ba241fe9750d7c268819a) Thanks [@kylemcd](https://github.com/kylemcd)! - fix button active state css selectors + remove post css combine classes config
|
|
8
|
+
|
|
9
|
+
## 0.0.19
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#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
|
|
14
|
+
|
|
3
15
|
## 0.0.18
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -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 @@
|
|
|
1
|
+
{"version":3,"file":"style-engine-postcss-config.d.ts","sourceRoot":"","sources":["../src/style-engine-postcss-config.ts"],"names":[],"mappings":";;;AAAA,wBAUE"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = {
|
|
4
|
+
plugins: [
|
|
5
|
+
require("postcss-discard-empty"),
|
|
6
|
+
require("autoprefixer"),
|
|
7
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
8
|
+
require("@csstools/postcss-global-data")({
|
|
9
|
+
module: ["@telegraph/tokens/dist/css/breakpoints.css"],
|
|
10
|
+
}),
|
|
11
|
+
require("postcss-custom-media"),
|
|
12
|
+
],
|
|
13
|
+
};
|