@telegraph/postcss-config 0.0.1 → 0.0.5

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 ADDED
@@ -0,0 +1,46 @@
1
+ # @telegraph/postcss-config
2
+
3
+ ## 0.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#17](https://github.com/knocklabs/telegraph/pull/17) [`615c6c4`](https://github.com/knocklabs/telegraph/commit/615c6c4f835819933ab292ecbdf12cba3b95f446) Thanks [@kylemcd](https://github.com/kylemcd)! - bump versions
8
+
9
+ - Updated dependencies [[`615c6c4`](https://github.com/knocklabs/telegraph/commit/615c6c4f835819933ab292ecbdf12cba3b95f446)]:
10
+ - @telegraph/tailwind-config@0.0.5
11
+
12
+ ## 0.0.4
13
+
14
+ ### Patch Changes
15
+
16
+ - [#15](https://github.com/knocklabs/telegraph/pull/15) [`4c8c13d`](https://github.com/knocklabs/telegraph/commit/4c8c13d877b3065d03c156519646a5641185da17) Thanks [@kylemcd](https://github.com/kylemcd)! - bump versions
17
+
18
+ - Updated dependencies [[`4c8c13d`](https://github.com/knocklabs/telegraph/commit/4c8c13d877b3065d03c156519646a5641185da17)]:
19
+ - @telegraph/tailwind-config@0.0.4
20
+
21
+ ## 0.0.3
22
+
23
+ ### Patch Changes
24
+
25
+ - [#13](https://github.com/knocklabs/telegraph/pull/13) [`cb2e132`](https://github.com/knocklabs/telegraph/commit/cb2e1322647c2f86c72bca4a1fe342c530ba9feb) Thanks [@kylemcd](https://github.com/kylemcd)! - bump versions
26
+
27
+ - Updated dependencies [[`cb2e132`](https://github.com/knocklabs/telegraph/commit/cb2e1322647c2f86c72bca4a1fe342c530ba9feb)]:
28
+ - @telegraph/tailwind-config@0.0.3
29
+
30
+ ## 0.0.2
31
+
32
+ ### Patch Changes
33
+
34
+ - [#11](https://github.com/knocklabs/telegraph/pull/11) [`4fe3fa2`](https://github.com/knocklabs/telegraph/commit/4fe3fa2eda03d14301ab58977a8ce4e122187d9d) Thanks [@kylemcd](https://github.com/kylemcd)! - Add package READMEs and dist folder
35
+
36
+ - Updated dependencies [[`4fe3fa2`](https://github.com/knocklabs/telegraph/commit/4fe3fa2eda03d14301ab58977a8ce4e122187d9d)]:
37
+ - @telegraph/tailwind-config@0.0.2
38
+
39
+ ## 0.0.1
40
+
41
+ ### Patch Changes
42
+
43
+ - [#7](https://github.com/knocklabs/telegraph/pull/7) [`82b7f89`](https://github.com/knocklabs/telegraph/commit/82b7f89254b8bb53f1a2ac0aacb27103acb76337) Thanks [@kylemcd](https://github.com/kylemcd)! - first iteration of shared config packages
44
+
45
+ - Updated dependencies [[`82b7f89`](https://github.com/knocklabs/telegraph/commit/82b7f89254b8bb53f1a2ac0aacb27103acb76337)]:
46
+ - @telegraph/tailwind-config@0.0.1
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @telegraph/postcss-config
2
+
3
+ Shared `PostCSS` config for internal use in the telegraph project.
@@ -0,0 +1,2 @@
1
+ export { default as postCssConfig } from "./postcss-config";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +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"}
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ 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; } });
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ plugins: any[];
3
+ };
4
+ export default _default;
5
+ //# sourceMappingURL=postcss-config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"postcss-config.d.ts","sourceRoot":"","sources":["../src/postcss-config.ts"],"names":[],"mappings":";;;AAEA,wBAUE"}
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tailwind_config_1 = require("@telegraph/tailwind-config");
4
+ exports.default = {
5
+ plugins: [
6
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
7
+ require("tailwindcss")({
8
+ config: tailwind_config_1.tailwindConfig,
9
+ }),
10
+ require("postcss-combine-duplicated-selectors"),
11
+ require("postcss-discard-empty"),
12
+ require("autoprefixer"),
13
+ ],
14
+ };
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@telegraph/postcss-config",
3
- "version": "0.0.1",
3
+ "version": "0.0.5",
4
4
  "author": "@knocklabs",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/knocklabs/telegraph/tree/main/packages/postcss-config",
7
7
  "main": "dist/index.js",
8
8
  "files": [
9
- "dist/*"
9
+ "dist/*",
10
+ "README.md"
10
11
  ],
11
12
  "prettier": "@telegraph/prettier-config",
12
13
  "scripts": {
@@ -17,7 +18,7 @@
17
18
  "format:check": "prettier \"src/**/*.{js,ts,tsx}\" --check"
18
19
  },
19
20
  "dependencies": {
20
- "@telegraph/tailwind-config": "workspace:^",
21
+ "@telegraph/tailwind-config": "^0.0.5",
21
22
  "autoprefixer": "^10.4.17",
22
23
  "postcss": "^8.4.33",
23
24
  "postcss-combine-duplicated-selectors": "^10.0.3",
@@ -27,8 +28,8 @@
27
28
  "devDependencies": {
28
29
  "@knocklabs/eslint-config": "^0.0.3",
29
30
  "@knocklabs/typescript-config": "^0.0.2",
30
- "@telegraph/prettier-config": "workspace:^",
31
+ "@telegraph/prettier-config": "^0.0.5",
31
32
  "eslint": "^8.56.0",
32
33
  "typescript": "^5.3.3"
33
34
  }
34
- }
35
+ }