@griffel/postcss-syntax 1.3.14 → 1.3.16

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/README.md CHANGED
@@ -1,33 +1,150 @@
1
- # Postcss syntax for Griffel
1
+ # PostCSS syntax for Griffel
2
2
 
3
- A postcss [custom syntax](https://postcss.org/docs/how-to-write-custom-syntax) for Javascript files that contain
4
- Griffel CSS in JS code.
3
+ A PostCSS [custom syntax](https://postcss.org/docs/how-to-write-custom-syntax) that exposes the CSS
4
+ generated by Griffel to CSS tooling, most notably [stylelint](https://stylelint.io/).
5
5
 
6
- ## Parser
6
+ Griffel compiles `makeStyles()` and `makeResetStyles()` calls to atomic CSS ahead of time, so that CSS
7
+ never exists as a `.css` file and a CSS linter has nothing to read. This package closes that gap: it
8
+ runs the Griffel transform over a JavaScript/TypeScript file and returns a PostCSS AST of the
9
+ generated CSS, with source locations that point back to the original JavaScript.
7
10
 
8
- The parser will parse a Javascript file and return the CSS output of any Griffel `makeStyle` or `makeResetStyle`
9
- calls. The parsed postcss AST will include source locations back to the original Javascript code.
11
+ <!-- START doctoc generated TOC please keep comment here to allow auto update -->
12
+ <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
10
13
 
11
- ## Stringifier
14
+ - [Install](#install)
15
+ - [Usage with stylelint](#usage-with-stylelint)
16
+ - [Disabling rules](#disabling-rules)
17
+ - [Linting custom wrappers](#linting-custom-wrappers)
18
+ - [API](#api)
19
+ - [Limitations](#limitations)
12
20
 
13
- The stringifier only works on a postcss AST that was parsed by this custom syntax since Griffel ahead of time
14
- compilation lacks the capability to map generated CSS back to the original javascript properties very accurately.
21
+ <!-- END doctoc generated TOC please keep comment here to allow auto update -->
15
22
 
16
- ## Configuring @griffel/babel-preset
23
+ ## Install
17
24
 
18
- The preprocessor uses transforms in the `@griffel/babel-preset` package. In order to configure the babel transform
19
- that is used internally, we've created the a factory to return the custom syntax that uses the desired configuration.
25
+ ```bash
26
+ yarn add --dev @griffel/postcss-syntax
27
+ # or
28
+ npm install --save-dev @griffel/postcss-syntax
29
+ ```
30
+
31
+ > ⚠️ This package is **ESM only**. If your project is CommonJS, use `stylelint.config.mjs` rather than
32
+ > `.stylelintrc.js`, as the latter is loaded with `require()`.
33
+
34
+ ## Usage with stylelint
35
+
36
+ Stylelint calls a PostCSS syntax a [custom syntax](https://stylelint.io/developer-guide/syntaxes).
37
+ Point `customSyntax` at this package:
38
+
39
+ ```json title=".stylelintrc.json"
40
+ {
41
+ "customSyntax": "@griffel/postcss-syntax",
42
+ "rules": {
43
+ "selector-anb-no-unmatchable": true
44
+ }
45
+ }
46
+ ```
47
+
48
+ Then lint your style files:
49
+
50
+ ```bash
51
+ npx stylelint "src/**/*.styles.ts"
52
+ ```
53
+
54
+ For example, this file:
55
+
56
+ ```ts title="example.styles.ts"
57
+ import { makeStyles } from '@griffel/react';
58
+
59
+ export const useStyles = makeStyles({
60
+ root: {
61
+ ':nth-child(0)': { color: 'red' },
62
+ },
63
+ });
64
+ ```
65
+
66
+ ...generates `.fwey13v:nth-child(0){color:red;}`, which makes stylelint report
67
+ `selector-anb-no-unmatchable`. The reported location points at the `root` slot in `example.styles.ts`,
68
+ not at the generated CSS.
69
+
70
+ ## Disabling rules
71
+
72
+ `stylelint-disable` comments cannot be placed in generated CSS, so use a `griffel-csslint-disable`
73
+ comment directive instead. For `makeStyles()` place it above a slot:
74
+
75
+ ```ts
76
+ export const useStyles = makeStyles({
77
+ // griffel-csslint-disable selector-anb-no-unmatchable
78
+ root: {
79
+ ':nth-child(0)': { color: 'red' },
80
+ },
81
+ });
82
+ ```
83
+
84
+ For `makeResetStyles()` place it above the declaration:
20
85
 
21
86
  ```ts
87
+ // griffel-csslint-disable selector-anb-no-unmatchable
88
+ export const useResetStyles = makeResetStyles({
89
+ ':nth-child(0)': { color: 'red' },
90
+ });
91
+ ```
92
+
93
+ A directive must be a line comment (`//`) and disables exactly one rule. To disable several rules, use
94
+ several comments:
95
+
96
+ ```ts
97
+ export const useStyles = makeStyles({
98
+ // griffel-csslint-disable selector-anb-no-unmatchable
99
+ // griffel-csslint-disable declaration-property-value-no-unknown
100
+ root: {/* ... */},
101
+ });
102
+ ```
103
+
104
+ ## Linting custom wrappers
105
+
106
+ By default only `makeStyles()`/`makeResetStyles()` imported from `@griffel/core`, `@griffel/react` or
107
+ `@fluentui/react-components` are processed. If your project re-exports them from its own package, use
108
+ `createSyntax()` to build a configured syntax:
109
+
110
+ ```js title="stylelint.config.mjs"
22
111
  import { createSyntax } from '@griffel/postcss-syntax';
23
- const syntax = createSyntax({
24
- modules: [
25
- { moduleSource: '@myScope/griffel', importName: 'createStyles' },
26
- ]
27
- })
112
+
113
+ export default {
114
+ customSyntax: createSyntax({
115
+ importsToTransform: ['@griffel/react', '@myScope/griffel'],
116
+ }),
117
+ rules: {
118
+ 'selector-anb-no-unmatchable': true,
119
+ },
120
+ };
28
121
  ```
29
122
 
30
- For more information about how to configure the babel Griffel preset
31
- [you can check out the docs](https://github.com/microsoft/griffel/blob/main/packages/babel-preset/README.md#usage)
123
+ `createSyntax()` accepts:
124
+
125
+ | Option | Type | Default | Description |
126
+ | ---------------------- | ---------- | ------------------------------------------------------------------- | ------------------------------------------------------------- |
127
+ | `importsToTransform` | `string[]` | `['@griffel/core', '@griffel/react', '@fluentui/react-components']` | Modules whose Griffel imports should be processed. |
128
+ | `functionsToTransform` | `string[]` | `['makeStyles', 'makeResetStyles', 'makeStaticStyles']` | Function names that should be treated as Griffel style calls. |
129
+
130
+ > ⚠️ Both options **replace** their defaults rather than extend them. Keep `@griffel/react` in the
131
+ > list if you also import from it directly.
132
+
133
+ ## API
134
+
135
+ - `parse(css, options?)` — parses a JavaScript/TypeScript source and returns a PostCSS AST of the
136
+ generated CSS. Supports `from`, `silenceParseErrors`, `importsToTransform` and
137
+ `functionsToTransform`.
138
+ - `stringify(node, builder)` — the matching stringifier.
139
+ - `createSyntax(options)` — returns a `{ parse, stringify }` syntax configured with the options above.
140
+
141
+ When a file cannot be parsed, `parse()` emits a `/* Failed to parse griffel styles: <file> */` comment
142
+ and logs the error. Pass `silenceParseErrors: true` to suppress the log.
32
143
 
144
+ ## Limitations
33
145
 
146
+ - Only `makeStyles()` and `makeResetStyles()` produce CSS, and both must be statically evaluable, see
147
+ [limitations of the build time transform](https://griffel.js.org/react/guides/limitations).
148
+ - The stringifier only works on an AST produced by this syntax, as Griffel's ahead of time compilation
149
+ cannot map generated CSS back to the original JavaScript accurately enough for arbitrary input. For
150
+ the same reason stylelint's `--fix` is not supported.
package/package.json CHANGED
@@ -1,19 +1,25 @@
1
1
  {
2
2
  "name": "@griffel/postcss-syntax",
3
- "version": "1.3.14",
3
+ "version": "1.3.16",
4
4
  "description": "postcss syntax for Griffel",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/microsoft/griffel"
9
9
  },
10
- "dependencies": {
11
- "@babel/core": "^7.29.6",
12
- "@babel/helper-plugin-utils": "^7.28.6",
13
- "@griffel/babel-preset": "^1.9.1",
14
- "postcss": "^8.5.14"
15
- },
10
+ "type": "module",
16
11
  "main": "./src/index.js",
17
12
  "types": "./src/index.d.ts",
18
- "type": "commonjs"
13
+ "exports": {
14
+ ".": {
15
+ "types": "./src/index.d.ts",
16
+ "default": "./src/index.js"
17
+ },
18
+ "./package.json": "./package.json"
19
+ },
20
+ "dependencies": {
21
+ "@griffel/transform": "^3.0.9",
22
+ "postcss": "^8.5.23"
23
+ },
24
+ "module": "./src/index.js"
19
25
  }
package/src/constants.js CHANGED
@@ -1,9 +1,6 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GRIFFEL_DECLARATOR_LOCATION_RAW = exports.GRIFFEL_SLOT_LOCATION_RAW = exports.GRIFFEL_DECLARATOR_RAW = exports.GRIFFEL_SRC_RAW = exports.GRIFFEL_SLOT_RAW = void 0;
4
- exports.GRIFFEL_SLOT_RAW = 'griffel-slot';
5
- exports.GRIFFEL_SRC_RAW = 'griffel-src';
6
- exports.GRIFFEL_DECLARATOR_RAW = 'griffel-declarator';
7
- exports.GRIFFEL_SLOT_LOCATION_RAW = 'griffel-slot-location';
8
- exports.GRIFFEL_DECLARATOR_LOCATION_RAW = 'griffel-declarator-location';
1
+ export const GRIFFEL_SLOT_RAW = 'griffel-slot';
2
+ export const GRIFFEL_SRC_RAW = 'griffel-src';
3
+ export const GRIFFEL_DECLARATOR_RAW = 'griffel-declarator';
4
+ export const GRIFFEL_SLOT_LOCATION_RAW = 'griffel-slot-location';
5
+ export const GRIFFEL_DECLARATOR_LOCATION_RAW = 'griffel-declarator-location';
9
6
  //# sourceMappingURL=constants.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../../packages/postcss-syntax/src/constants.ts"],"names":[],"mappings":";;;AAAa,QAAA,gBAAgB,GAAG,cAAc,CAAC;AAClC,QAAA,eAAe,GAAG,aAAa,CAAC;AAChC,QAAA,sBAAsB,GAAG,oBAAoB,CAAC;AAC9C,QAAA,yBAAyB,GAAG,uBAAuB,CAAC;AACpD,QAAA,+BAA+B,GAAG,6BAA6B,CAAC"}
1
+ {"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../../packages/postcss-syntax/src/constants.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,gBAAgB,GAAG,cAAc,CAAC;AAC/C,MAAM,CAAC,MAAM,eAAe,GAAG,aAAa,CAAC;AAC7C,MAAM,CAAC,MAAM,sBAAsB,GAAG,oBAAoB,CAAC;AAC3D,MAAM,CAAC,MAAM,yBAAyB,GAAG,uBAAuB,CAAC;AACjE,MAAM,CAAC,MAAM,+BAA+B,GAAG,6BAA6B,CAAC"}
@@ -1,8 +1,8 @@
1
- import type { BabelPluginOptions } from '@griffel/babel-preset';
1
+ import type { ParserOptions } from './parse.js';
2
2
  import type * as postcss from 'postcss';
3
3
  /**
4
- * Creates a custom syntax with configured options for @griffel/babel-preset
5
- * @param options - Options to configure @griffel/babel-preset
4
+ * Creates a custom syntax with configured options
5
+ * @param options - Options to configure the transform
6
6
  * @returns a postcss custom syntax
7
7
  */
8
- export declare function createSyntax(options: BabelPluginOptions): postcss.Syntax;
8
+ export declare function createSyntax(options: Pick<ParserOptions, 'importsToTransform' | 'functionsToTransform'>): postcss.Syntax;
@@ -1,17 +1,14 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.createSyntax = createSyntax;
4
- const parse_1 = require("./parse");
5
- const stringify_1 = require("./stringify");
1
+ import { parse } from './parse.js';
2
+ import { stringify } from './stringify.js';
6
3
  /**
7
- * Creates a custom syntax with configured options for @griffel/babel-preset
8
- * @param options - Options to configure @griffel/babel-preset
4
+ * Creates a custom syntax with configured options
5
+ * @param options - Options to configure the transform
9
6
  * @returns a postcss custom syntax
10
7
  */
11
- function createSyntax(options) {
12
- const extendedParse = (css, opts) => (0, parse_1.parse)(css, { ...opts, ...options });
8
+ export function createSyntax(options) {
9
+ const extendedParse = (css, opts) => parse(css, { ...opts, ...options });
13
10
  return {
14
- stringify: stringify_1.stringify,
11
+ stringify,
15
12
  parse: extendedParse,
16
13
  };
17
14
  }
@@ -1 +1 @@
1
- {"version":3,"file":"createSyntax.js","sourceRoot":"","sources":["../../../../packages/postcss-syntax/src/createSyntax.ts"],"names":[],"mappings":";;AAWA,oCAOC;AAfD,mCAAgC;AAChC,2CAAwC;AAExC;;;;GAIG;AACH,SAAgB,YAAY,CAAC,OAA2B;IACtD,MAAM,aAAa,GAAmB,CAAC,GAAG,EAAE,IAAI,EAAE,EAAE,CAAC,IAAA,aAAK,EAAC,GAAG,EAAE,EAAE,GAAG,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAEzF,OAAO;QACL,SAAS,EAAT,qBAAS;QACT,KAAK,EAAE,aAAa;KACrB,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"createSyntax.js","sourceRoot":"","sources":["../../../../packages/postcss-syntax/src/createSyntax.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAE3C;;;;GAIG;AACH,MAAM,UAAU,YAAY,CAC1B,OAA2E;IAE3E,MAAM,aAAa,GAAmB,CAAC,GAAG,EAAE,IAAI,EAAE,EAAE,CAAC,KAAK,CAAC,GAAG,EAAE,EAAE,GAAG,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAEzF,OAAO;QACL,SAAS;QACT,KAAK,EAAE,aAAa;KACrB,CAAC;AACJ,CAAC"}
package/src/index.d.ts CHANGED
@@ -1,12 +1,12 @@
1
- import { parse } from './parse';
2
- import { stringify } from './stringify';
1
+ import { parse } from './parse.js';
2
+ import { stringify } from './stringify.js';
3
3
  export { parse, stringify };
4
- export { createSyntax } from './createSyntax';
4
+ export { createSyntax } from './createSyntax.js';
5
5
  declare const _default: {
6
6
  parse: (css: string | {
7
7
  toString(): string;
8
- }, opts?: import("./parse").ParserOptions) => import("postcss").Root;
8
+ }, opts?: import("./parse.js").ParserOptions) => import("postcss").Root;
9
9
  stringify: import("postcss").Stringifier;
10
10
  };
11
11
  export default _default;
12
- export { GRIFFEL_DECLARATOR_LOCATION_RAW, GRIFFEL_SLOT_LOCATION_RAW } from './constants';
12
+ export { GRIFFEL_DECLARATOR_LOCATION_RAW, GRIFFEL_SLOT_LOCATION_RAW } from './constants.js';
package/src/index.js CHANGED
@@ -1,17 +1,10 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GRIFFEL_SLOT_LOCATION_RAW = exports.GRIFFEL_DECLARATOR_LOCATION_RAW = exports.createSyntax = exports.stringify = exports.parse = void 0;
4
- const parse_1 = require("./parse");
5
- Object.defineProperty(exports, "parse", { enumerable: true, get: function () { return parse_1.parse; } });
6
- const stringify_1 = require("./stringify");
7
- Object.defineProperty(exports, "stringify", { enumerable: true, get: function () { return stringify_1.stringify; } });
8
- var createSyntax_1 = require("./createSyntax");
9
- Object.defineProperty(exports, "createSyntax", { enumerable: true, get: function () { return createSyntax_1.createSyntax; } });
10
- exports.default = {
11
- parse: parse_1.parse,
12
- stringify: stringify_1.stringify,
1
+ import { parse } from './parse.js';
2
+ import { stringify } from './stringify.js';
3
+ export { parse, stringify };
4
+ export { createSyntax } from './createSyntax.js';
5
+ export default {
6
+ parse,
7
+ stringify,
13
8
  };
14
- var constants_1 = require("./constants");
15
- Object.defineProperty(exports, "GRIFFEL_DECLARATOR_LOCATION_RAW", { enumerable: true, get: function () { return constants_1.GRIFFEL_DECLARATOR_LOCATION_RAW; } });
16
- Object.defineProperty(exports, "GRIFFEL_SLOT_LOCATION_RAW", { enumerable: true, get: function () { return constants_1.GRIFFEL_SLOT_LOCATION_RAW; } });
9
+ export { GRIFFEL_DECLARATOR_LOCATION_RAW, GRIFFEL_SLOT_LOCATION_RAW } from './constants.js';
17
10
  //# sourceMappingURL=index.js.map
package/src/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../packages/postcss-syntax/src/index.ts"],"names":[],"mappings":";;;AAAA,mCAAgC;AAGvB,sFAHA,aAAK,OAGA;AAFd,2CAAwC;AAExB,0FAFP,qBAAS,OAEO;AACzB,+CAA8C;AAArC,4GAAA,YAAY,OAAA;AAErB,kBAAe;IACb,KAAK,EAAL,aAAK;IACL,SAAS,EAAT,qBAAS;CACV,CAAC;AAEF,yCAAyF;AAAhF,4HAAA,+BAA+B,OAAA;AAAE,sHAAA,yBAAyB,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../packages/postcss-syntax/src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AACnC,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAE3C,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC;AAC5B,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEjD,eAAe;IACb,KAAK;IACL,SAAS;CACV,CAAC;AAEF,OAAO,EAAE,+BAA+B,EAAE,yBAAyB,EAAE,MAAM,gBAAgB,CAAC"}
package/src/parse.d.ts CHANGED
@@ -1,7 +1,8 @@
1
1
  import * as postcss from 'postcss';
2
- import type { BabelPluginOptions } from '@griffel/babel-preset';
2
+ import type { TransformOptions as GriffelTransformOptions } from '@griffel/transform';
3
3
  export type PostCSSParserOptions = Pick<postcss.ProcessOptions<postcss.Document | postcss.Root>, 'from' | 'map'>;
4
- export interface ParserOptions extends Pick<PostCSSParserOptions, 'from'>, BabelPluginOptions {
4
+ type ModuleMatchingOptions = Pick<GriffelTransformOptions, 'importsToTransform' | 'functionsToTransform'>;
5
+ export interface ParserOptions extends Pick<PostCSSParserOptions, 'from'>, ModuleMatchingOptions {
5
6
  /**
6
7
  * Throws error when griffel parsing fails
7
8
  * @default false
@@ -15,3 +16,4 @@ export interface ParserOptions extends Pick<PostCSSParserOptions, 'from'>, Babel
15
16
  export declare const parse: (css: string | {
16
17
  toString(): string;
17
18
  }, opts?: ParserOptions) => postcss.Root;
19
+ export {};
package/src/parse.js CHANGED
@@ -1,33 +1,30 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.parse = void 0;
4
- const postcss = require("postcss");
5
- const transform_sync_1 = require("./transform-sync");
6
- const constants_1 = require("./constants");
7
- const os = require("os");
1
+ import * as postcss from 'postcss';
2
+ import { transformSync as griffelTransformSync } from '@griffel/transform';
3
+ import { GRIFFEL_DECLARATOR_LOCATION_RAW, GRIFFEL_DECLARATOR_RAW, GRIFFEL_SLOT_LOCATION_RAW, GRIFFEL_SLOT_RAW, GRIFFEL_SRC_RAW, } from './constants.js';
4
+ import { nodeResolve } from './resolveModule.js';
5
+ import * as os from 'os';
8
6
  /**
9
7
  * Generates CSS rules from a JavaScript file. Each slot in `makeStyles` and each `makeResetStyles` will be one line in the output.
10
8
  * It returns a PostCSS AST that parses the generated CSS rules. For each node in AST, attaches information about its related slot location from the original js file.
11
9
  */
12
- const parse = (css, opts) => {
13
- const { from: filename = 'postcss-syntax.styles.ts', silenceParseErrors = false } = opts !== null && opts !== void 0 ? opts : {};
14
- const griffelPluginOptions = extractGriffelBabelPluginOptions(opts);
10
+ export const parse = (css, opts) => {
11
+ const { from: filename = 'postcss-syntax.styles.ts', silenceParseErrors = false } = opts ?? {};
12
+ const pluginOptions = extractPluginOptions(opts);
15
13
  const code = css.toString();
16
14
  const cssRuleSlotNames = [];
17
15
  const cssRules = [];
18
- const parseResult = parseGriffelStyles(code, filename, griffelPluginOptions, silenceParseErrors);
16
+ const parseResult = parseGriffelStyles(code, filename, pluginOptions, silenceParseErrors);
19
17
  if (!parseResult) {
20
18
  const root = postcss.parse(`/* Failed to parse griffel styles: ${filename} */`, { from: filename });
21
- root.raws[constants_1.GRIFFEL_SRC_RAW] = code;
19
+ root.raws[GRIFFEL_SRC_RAW] = code;
22
20
  return root;
23
21
  }
24
22
  const { cssEntries, cssResetEntries, callExpressionLocations, resetLocations, locations, commentDirectives, resetCommentDirectives, } = parseResult;
25
23
  Object.entries(cssEntries).forEach(([declarator, slots]) => {
26
24
  Object.entries(slots).forEach(([slot, rules]) => {
27
- var _a, _b;
28
25
  cssRuleSlotNames.push(`${declarator} ${slot}`);
29
26
  let cssRule = rules.join('').replace(new RegExp(os.EOL, 'g'), ' ');
30
- const ignoredRules = getIgnoredRulesFromDirectives((_b = (_a = commentDirectives[declarator]) === null || _a === void 0 ? void 0 : _a[slot]) !== null && _b !== void 0 ? _b : []);
27
+ const ignoredRules = getIgnoredRulesFromDirectives(commentDirectives[declarator]?.[slot] ?? []);
31
28
  if (ignoredRules.length) {
32
29
  const stylelintIgnore = `/* stylelint-disable-line ${ignoredRules.join(',')} */`;
33
30
  cssRule = `${cssRule} ${stylelintIgnore}`;
@@ -36,9 +33,8 @@ const parse = (css, opts) => {
36
33
  });
37
34
  });
38
35
  Object.entries(cssResetEntries).forEach(([declarator, resetRules]) => {
39
- var _a;
40
36
  cssRuleSlotNames.push(`${declarator}`);
41
- const ignoredRules = getIgnoredRulesFromDirectives((_a = resetCommentDirectives[declarator]) !== null && _a !== void 0 ? _a : []);
37
+ const ignoredRules = getIgnoredRulesFromDirectives(resetCommentDirectives[declarator] ?? []);
42
38
  let cssRule = resetRules.join('').replace(new RegExp(os.EOL, 'g'), ' ');
43
39
  if (ignoredRules.length) {
44
40
  const stylelintIgnore = `/* stylelint-disable-line ${ignoredRules.join(',')} */`;
@@ -48,34 +44,31 @@ const parse = (css, opts) => {
48
44
  });
49
45
  const root = postcss.parse(cssRules.join('\n'), { from: filename });
50
46
  root.walk(node => {
51
- var _a, _b, _c;
52
47
  if (!node.source || node.source.start === undefined) {
53
48
  return;
54
49
  }
55
50
  const [declarator, slot] = cssRuleSlotNames[node.source.start.line - 1].split(' ');
56
- node.raws[constants_1.GRIFFEL_DECLARATOR_RAW] = declarator;
51
+ node.raws[GRIFFEL_DECLARATOR_RAW] = declarator;
57
52
  if (slot) {
58
- node.raws[constants_1.GRIFFEL_SLOT_RAW] = slot;
59
- node.raws[constants_1.GRIFFEL_SLOT_LOCATION_RAW] = (_b = (_a = locations[declarator]) === null || _a === void 0 ? void 0 : _a[slot]) !== null && _b !== void 0 ? _b : callExpressionLocations[declarator];
53
+ node.raws[GRIFFEL_SLOT_RAW] = slot;
54
+ node.raws[GRIFFEL_SLOT_LOCATION_RAW] = locations[declarator]?.[slot] ?? callExpressionLocations[declarator];
60
55
  }
61
56
  else {
62
- node.raws[constants_1.GRIFFEL_DECLARATOR_LOCATION_RAW] = (_c = resetLocations[declarator]) !== null && _c !== void 0 ? _c : callExpressionLocations[declarator];
57
+ node.raws[GRIFFEL_DECLARATOR_LOCATION_RAW] = resetLocations[declarator] ?? callExpressionLocations[declarator];
63
58
  }
64
59
  });
65
- root.raws[constants_1.GRIFFEL_SRC_RAW] = css;
60
+ root.raws[GRIFFEL_SRC_RAW] = css;
66
61
  return root;
67
62
  };
68
- exports.parse = parse;
69
63
  function parseGriffelStyles(code, filename, pluginOpts, silenceParseErrors) {
70
64
  try {
71
- const { metadata } = (0, transform_sync_1.default)(code, {
65
+ const { metadata } = griffelTransformSync(code, {
72
66
  filename,
73
- pluginOptions: {
74
- ...pluginOpts,
75
- generateMetadata: true,
76
- },
67
+ resolveModule: nodeResolve,
68
+ generateMetadata: true,
69
+ ...pluginOpts,
77
70
  });
78
- return metadata;
71
+ return metadata ?? null;
79
72
  }
80
73
  catch (error) {
81
74
  // eslint-disable-next-line no-console
@@ -93,21 +86,15 @@ function getIgnoredRulesFromDirectives(commentDirectives) {
93
86
  .filter(([directive]) => directive === 'griffel-csslint-disable')
94
87
  .map(([_, rulename]) => rulename);
95
88
  }
96
- const extractGriffelBabelPluginOptions = (opts = {}) => {
97
- const { babelOptions, evaluationRules, generateMetadata, modules } = opts;
98
- const babelPluginOptions = {};
99
- if (babelOptions) {
100
- babelPluginOptions.babelOptions = babelOptions;
89
+ const extractPluginOptions = (opts = {}) => {
90
+ const { importsToTransform, functionsToTransform } = opts;
91
+ const pluginOptions = {};
92
+ if (importsToTransform) {
93
+ pluginOptions.importsToTransform = importsToTransform;
101
94
  }
102
- if (evaluationRules) {
103
- babelPluginOptions.evaluationRules = evaluationRules;
95
+ if (functionsToTransform) {
96
+ pluginOptions.functionsToTransform = functionsToTransform;
104
97
  }
105
- if (generateMetadata) {
106
- babelPluginOptions.generateMetadata = generateMetadata;
107
- }
108
- if (modules) {
109
- babelPluginOptions.modules = modules;
110
- }
111
- return babelPluginOptions;
98
+ return pluginOptions;
112
99
  };
113
100
  //# sourceMappingURL=parse.js.map
package/src/parse.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"parse.js","sourceRoot":"","sources":["../../../../packages/postcss-syntax/src/parse.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"parse.js","sourceRoot":"","sources":["../../../../packages/postcss-syntax/src/parse.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,SAAS,CAAC;AACnC,OAAO,EAAE,aAAa,IAAI,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC3E,OAAO,EACL,+BAA+B,EAC/B,sBAAsB,EACtB,yBAAyB,EACzB,gBAAgB,EAChB,eAAe,GAChB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAMjD,OAAO,KAAK,EAAE,MAAM,IAAI,CAAC;AAczB;;;GAGG;AACH,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,GAAoC,EAAE,IAAoB,EAAE,EAAE;IAClF,MAAM,EAAE,IAAI,EAAE,QAAQ,GAAG,0BAA0B,EAAE,kBAAkB,GAAG,KAAK,EAAE,GAAG,IAAI,IAAI,EAAE,CAAC;IAC/F,MAAM,aAAa,GAAG,oBAAoB,CAAC,IAAI,CAAC,CAAC;IACjD,MAAM,IAAI,GAAG,GAAG,CAAC,QAAQ,EAAE,CAAC;IAE5B,MAAM,gBAAgB,GAAa,EAAE,CAAC;IACtC,MAAM,QAAQ,GAAa,EAAE,CAAC;IAE9B,MAAM,WAAW,GAAG,kBAAkB,CAAC,IAAI,EAAE,QAAQ,EAAE,aAAa,EAAE,kBAAkB,CAAC,CAAC;IAC1F,IAAI,CAAC,WAAW,EAAE,CAAC;QACjB,MAAM,IAAI,GAAG,OAAO,CAAC,KAAK,CAAC,sCAAsC,QAAQ,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC,CAAC;QACpG,IAAI,CAAC,IAAI,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC;QAClC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,MAAM,EACJ,UAAU,EACV,eAAe,EACf,uBAAuB,EACvB,cAAc,EACd,SAAS,EACT,iBAAiB,EACjB,sBAAsB,GACvB,GAAG,WAAW,CAAC;IAEhB,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,UAAU,EAAE,KAAK,CAAC,EAAE,EAAE;QACzD,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,EAAE,KAAK,CAAC,EAAE,EAAE;YAC9C,gBAAgB,CAAC,IAAI,CAAC,GAAG,UAAU,IAAI,IAAI,EAAE,CAAC,CAAC;YAC/C,IAAI,OAAO,GAAG,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC;YAEnE,MAAM,YAAY,GAAG,6BAA6B,CAAC,iBAAiB,CAAC,UAAU,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC;YAChG,IAAI,YAAY,CAAC,MAAM,EAAE,CAAC;gBACxB,MAAM,eAAe,GAAG,6BAA6B,YAAY,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC;gBACjF,OAAO,GAAG,GAAG,OAAO,IAAI,eAAe,EAAE,CAAC;YAC5C,CAAC;YAED,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACzB,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,MAAM,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,UAAU,EAAE,UAAU,CAAC,EAAE,EAAE;QACnE,gBAAgB,CAAC,IAAI,CAAC,GAAG,UAAU,EAAE,CAAC,CAAC;QACvC,MAAM,YAAY,GAAG,6BAA6B,CAAC,sBAAsB,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC,CAAC;QAC7F,IAAI,OAAO,GAAG,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE,GAAG,CAAC,CAAC;QAExE,IAAI,YAAY,CAAC,MAAM,EAAE,CAAC;YACxB,MAAM,eAAe,GAAG,6BAA6B,YAAY,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC;YACjF,OAAO,GAAG,GAAG,OAAO,IAAI,eAAe,EAAE,CAAC;QAC5C,CAAC;QAED,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IACzB,CAAC,CAAC,CAAC;IAEH,MAAM,IAAI,GAAG,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAC,CAAC;IACpE,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE;QACf,IAAI,CAAC,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,KAAK,SAAS,EAAE,CAAC;YACpD,OAAO;QACT,CAAC;QACD,MAAM,CAAC,UAAU,EAAE,IAAI,CAAC,GAAG,gBAAgB,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QACnF,IAAI,CAAC,IAAI,CAAC,sBAAsB,CAAC,GAAG,UAAU,CAAC;QAC/C,IAAI,IAAI,EAAE,CAAC;YACT,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC;YACnC,IAAI,CAAC,IAAI,CAAC,yBAAyB,CAAC,GAAG,SAAS,CAAC,UAAU,CAAC,EAAE,CAAC,IAAI,CAAC,IAAI,uBAAuB,CAAC,UAAU,CAAC,CAAC;QAC9G,CAAC;aAAM,CAAC;YACN,IAAI,CAAC,IAAI,CAAC,+BAA+B,CAAC,GAAG,cAAc,CAAC,UAAU,CAAC,IAAI,uBAAuB,CAAC,UAAU,CAAC,CAAC;QACjH,CAAC;IACH,CAAC,CAAC,CAAC;IAEH,IAAI,CAAC,IAAI,CAAC,eAAe,CAAC,GAAG,GAAG,CAAC;IACjC,OAAO,IAAI,CAAC;AACd,CAAC,CAAC;AAEF,SAAS,kBAAkB,CACzB,IAAY,EACZ,QAAgB,EAChB,UAAiC,EACjC,kBAA2B;IAE3B,IAAI,CAAC;QACH,MAAM,EAAE,QAAQ,EAAE,GAAG,oBAAoB,CAAC,IAAI,EAAE;YAC9C,QAAQ;YACR,aAAa,EAAE,WAAW;YAC1B,gBAAgB,EAAE,IAAI;YACtB,GAAG,UAAU;SACd,CAAC,CAAC;QAEH,OAAO,QAAQ,IAAI,IAAI,CAAC;IAC1B,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,sCAAsC;QACtC,OAAO,CAAC,IAAI,CAAC,gCAAgC,CAAC,CAAC;QAC/C,sCAAsC;QACtC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACpB,IAAI,kBAAkB,EAAE,CAAC;YACvB,OAAO,IAAI,CAAC;QACd,CAAC;QAED,MAAM,KAAK,CAAC;IACd,CAAC;AACH,CAAC;AAED,SAAS,6BAA6B,CAAC,iBAAsD;IAC3F,OAAO,iBAAiB;SACrB,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC,EAAE,EAAE,CAAC,SAAS,KAAK,yBAAyB,CAAC;SAChE,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,CAAC,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC;AACtC,CAAC;AAED,MAAM,oBAAoB,GAAG,CAAC,OAAsB,EAAE,EAAE,EAAE;IACxD,MAAM,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,GAAG,IAAI,CAAC;IAC1D,MAAM,aAAa,GAA0B,EAAE,CAAC;IAEhD,IAAI,kBAAkB,EAAE,CAAC;QACvB,aAAa,CAAC,kBAAkB,GAAG,kBAAkB,CAAC;IACxD,CAAC;IAED,IAAI,oBAAoB,EAAE,CAAC;QACzB,aAAa,CAAC,oBAAoB,GAAG,oBAAoB,CAAC;IAC5D,CAAC;IAED,OAAO,aAAa,CAAC;AACvB,CAAC,CAAC"}
@@ -0,0 +1,10 @@
1
+ import type { TransformOptions as GriffelTransformOptions } from '@griffel/transform';
2
+ /**
3
+ * A Node based module resolver for `@griffel/transform`. In addition to the extensions that Node
4
+ * resolves by default it also accepts TypeScript/JSX extensions by temporarily registering them
5
+ * with Node's resolver, so imports inside `.ts`/`.tsx` style files can be resolved.
6
+ *
7
+ * Node builtins are reported via `builtin: true` so that `@griffel/transform` can reject them with
8
+ * a descriptive error instead of trying to evaluate them in its sandbox.
9
+ */
10
+ export declare const nodeResolve: GriffelTransformOptions['resolveModule'];
@@ -0,0 +1,37 @@
1
+ import NativeModule from 'node:module';
2
+ const EXTRA_EXTENSIONS = ['.ts', '.tsx', '.jsx', '.cjs'];
3
+ /**
4
+ * A Node based module resolver for `@griffel/transform`. In addition to the extensions that Node
5
+ * resolves by default it also accepts TypeScript/JSX extensions by temporarily registering them
6
+ * with Node's resolver, so imports inside `.ts`/`.tsx` style files can be resolved.
7
+ *
8
+ * Node builtins are reported via `builtin: true` so that `@griffel/transform` can reject them with
9
+ * a descriptive error instead of trying to evaluate them in its sandbox.
10
+ */
11
+ export const nodeResolve = (id, opts) => {
12
+ if (NativeModule.isBuiltin(id)) {
13
+ return { path: id, builtin: true };
14
+ }
15
+ const extensions = NativeModule._extensions;
16
+ const added = [];
17
+ try {
18
+ for (const ext of EXTRA_EXTENSIONS) {
19
+ if (!(ext in extensions)) {
20
+ extensions[ext] = () => {
21
+ /* no-op: registers the extension so Node's resolver accepts it */
22
+ };
23
+ added.push(ext);
24
+ }
25
+ }
26
+ return {
27
+ path: NativeModule._resolveFilename(id, opts),
28
+ builtin: false,
29
+ };
30
+ }
31
+ finally {
32
+ for (const ext of added) {
33
+ delete extensions[ext];
34
+ }
35
+ }
36
+ };
37
+ //# sourceMappingURL=resolveModule.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resolveModule.js","sourceRoot":"","sources":["../../../../packages/postcss-syntax/src/resolveModule.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,aAAa,CAAC;AAGvC,MAAM,gBAAgB,GAAG,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;AAEzD;;;;;;;GAOG;AACH,MAAM,CAAC,MAAM,WAAW,GAA6C,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE;IAChF,IAAI,YAAY,CAAC,SAAS,CAAC,EAAE,CAAC,EAAE,CAAC;QAC/B,OAAO,EAAE,IAAI,EAAE,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;IACrC,CAAC;IAED,MAAM,UAAU,GAAI,YAAuE,CAAC,WAAW,CAAC;IACxG,MAAM,KAAK,GAAa,EAAE,CAAC;IAE3B,IAAI,CAAC;QACH,KAAK,MAAM,GAAG,IAAI,gBAAgB,EAAE,CAAC;YACnC,IAAI,CAAC,CAAC,GAAG,IAAI,UAAU,CAAC,EAAE,CAAC;gBACzB,UAAU,CAAC,GAAG,CAAC,GAAG,GAAG,EAAE;oBACrB,kEAAkE;gBACpE,CAAC,CAAC;gBACF,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;YAClB,CAAC;QACH,CAAC;QAED,OAAO;YACL,IAAI,EACF,YACD,CAAC,gBAAgB,CAAC,EAAE,EAAE,IAAI,CAAC;YAC5B,OAAO,EAAE,KAAK;SACf,CAAC;IACJ,CAAC;YAAS,CAAC;QACT,KAAK,MAAM,GAAG,IAAI,KAAK,EAAE,CAAC;YACxB,OAAO,UAAU,CAAC,GAAG,CAAC,CAAC;QACzB,CAAC;IACH,CAAC;AACH,CAAC,CAAC"}
package/src/stringify.js CHANGED
@@ -1,14 +1,10 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.stringify = void 0;
4
- const constants_1 = require("./constants");
5
- const stringify = root => {
6
- const originalSource = root.raw(constants_1.GRIFFEL_SRC_RAW);
1
+ import { GRIFFEL_SRC_RAW } from './constants.js';
2
+ export const stringify = root => {
3
+ const originalSource = root.raw(GRIFFEL_SRC_RAW);
7
4
  if (originalSource) {
8
5
  return originalSource;
9
6
  }
10
7
  // TODO maybe we could generate some default Griffel file with all styles in one slot
11
8
  throw new Error('Griffel syntax stringifier can only stringify AST parsed with the custom syntax');
12
9
  };
13
- exports.stringify = stringify;
14
10
  //# sourceMappingURL=stringify.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"stringify.js","sourceRoot":"","sources":["../../../../packages/postcss-syntax/src/stringify.ts"],"names":[],"mappings":";;;AACA,2CAA8C;AAEvC,MAAM,SAAS,GAAwB,IAAI,CAAC,EAAE;IACnD,MAAM,cAAc,GAAG,IAAI,CAAC,GAAG,CAAC,2BAAe,CAAC,CAAC;IACjD,IAAI,cAAc,EAAE,CAAC;QACnB,OAAO,cAAc,CAAC;IACxB,CAAC;IAED,qFAAqF;IACrF,MAAM,IAAI,KAAK,CAAC,iFAAiF,CAAC,CAAC;AACrG,CAAC,CAAC;AARW,QAAA,SAAS,aAQpB"}
1
+ {"version":3,"file":"stringify.js","sourceRoot":"","sources":["../../../../packages/postcss-syntax/src/stringify.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAEjD,MAAM,CAAC,MAAM,SAAS,GAAwB,IAAI,CAAC,EAAE;IACnD,MAAM,cAAc,GAAG,IAAI,CAAC,GAAG,CAAC,eAAe,CAAC,CAAC;IACjD,IAAI,cAAc,EAAE,CAAC;QACnB,OAAO,cAAc,CAAC;IACxB,CAAC;IAED,qFAAqF;IACrF,MAAM,IAAI,KAAK,CAAC,iFAAiF,CAAC,CAAC;AACrG,CAAC,CAAC"}
@@ -1,28 +0,0 @@
1
- import type { PluginObj, PluginPass, types as t, ConfigAPI } from '@babel/core';
2
- import type { BabelPluginOptions } from '@griffel/babel-preset';
3
- export type CommentDirective = [ /** directive *//** directive */ string, /** value */ string];
4
- export type CommentDirectivesBySlot = Record</** slot */ string, CommentDirective[]>;
5
- export type CommentDirectivesByHookDeclarator = Record</** hook declarator */ string, CommentDirectivesBySlot>;
6
- export type LocationsBySlot = Record</** slot */ string, t.SourceLocation>;
7
- export type LocationsByHookDeclarator = Record</** hook declarator */ string, LocationsBySlot>;
8
- export type ResetCommentDirectivesByHookDeclarator = Record</** hook declarator */ string, CommentDirective[]>;
9
- export type ResetLocationsByHookDeclarator = Record</** hook declarator */ string, t.SourceLocation>;
10
- export interface LocationPluginState extends PluginPass {
11
- callExpressionLocations?: Record</** hook declarator */ string, t.SourceLocation>;
12
- locations?: LocationsByHookDeclarator;
13
- commentDirectives?: CommentDirectivesByHookDeclarator;
14
- resetCommentDirectives?: ResetCommentDirectivesByHookDeclarator;
15
- resetLocations?: ResetLocationsByHookDeclarator;
16
- }
17
- export interface LocationPluginMetadata {
18
- callExpressionLocations: Record</** hook declarator */ string, t.SourceLocation>;
19
- locations: LocationsByHookDeclarator;
20
- commentDirectives: CommentDirectivesByHookDeclarator;
21
- resetCommentDirectives: ResetCommentDirectivesByHookDeclarator;
22
- resetLocations: ResetLocationsByHookDeclarator;
23
- }
24
- export type LocationPluginOptions = Pick<BabelPluginOptions, 'modules'>;
25
- declare const _default: (babel: ConfigAPI, options: LocationPluginOptions) => {
26
- plugins: (LocationPluginOptions | ((api: object, options: LocationPluginOptions | null | undefined, dirname: string) => PluginObj<LocationPluginState>))[][];
27
- };
28
- export default _default;
@@ -1,150 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const helper_plugin_utils_1 = require("@babel/helper-plugin-utils");
4
- /**
5
- * A plugin that parses Griffel code and returns code locations mapped to respective styles and slots
6
- */
7
- const plugin = (0, helper_plugin_utils_1.declare)((api, options) => {
8
- api.assertVersion(7);
9
- const { modules = [
10
- { moduleSource: '@griffel/react', importName: 'makeStyles', resetImportName: 'makeResetStyles' },
11
- { moduleSource: '@fluentui/react-components', importName: 'makeStyles', resetImportName: 'makeResetStyles' },
12
- ], } = options;
13
- const functionKinds = modules.map(moduleEntry => {
14
- var _a;
15
- return (_a = moduleEntry.importName) !== null && _a !== void 0 ? _a : 'makeStyles';
16
- });
17
- const resetFunctionKinds = modules.map(moduleEntry => {
18
- var _a;
19
- return (_a = moduleEntry.resetImportName) !== null && _a !== void 0 ? _a : 'makeResetStyles';
20
- });
21
- return {
22
- name: '@griffel/slot-location-plugin',
23
- pre() {
24
- this.callExpressionLocations = {};
25
- this.locations = {};
26
- this.resetLocations = {};
27
- this.commentDirectives = {};
28
- this.resetCommentDirectives = {};
29
- },
30
- visitor: {
31
- Program: {
32
- exit() {
33
- Object.assign(this.file.metadata, {
34
- callExpressionLocations: this.callExpressionLocations,
35
- locations: this.locations,
36
- resetLocations: this.resetLocations,
37
- commentDirectives: this.commentDirectives,
38
- resetCommentDirectives: this.resetCommentDirectives,
39
- });
40
- },
41
- },
42
- // eslint-disable-next-line @typescript-eslint/naming-convention
43
- CallExpression(path, state) {
44
- var _a, _b, _c, _d, _e;
45
- const callee = path.get('callee');
46
- const declarator = path.findParent(p => p.isVariableDeclarator());
47
- if (!(declarator === null || declarator === void 0 ? void 0 : declarator.isVariableDeclarator())) {
48
- return;
49
- }
50
- const id = declarator.get('id');
51
- const declaratorId = id.isIdentifier() ? id.node.name : 'unknown';
52
- if (!callee.isIdentifier()) {
53
- return;
54
- }
55
- // Technically we should check if these function kinds are from Griffel
56
- // but since we only collect locations, the plugin is idempotent and we
57
- // it's safe enough to avoid doing that check
58
- if (functionKinds.includes(callee.node.name)) {
59
- if (path.node.loc) {
60
- (_a = state.callExpressionLocations) !== null && _a !== void 0 ? _a : (state.callExpressionLocations = {});
61
- state.callExpressionLocations[declaratorId] = {
62
- ...path.node.loc,
63
- };
64
- }
65
- const locations = path.get('arguments')[0];
66
- if (!locations.isObjectExpression()) {
67
- return;
68
- }
69
- const properties = locations.get('properties');
70
- properties.forEach(property => {
71
- var _a, _b, _c, _d;
72
- var _e, _f;
73
- if (!property.isObjectProperty()) {
74
- return;
75
- }
76
- const key = property.get('key');
77
- if (!key.isIdentifier()) {
78
- return;
79
- }
80
- if (!property.node.loc) {
81
- return;
82
- }
83
- (_a = state.locations) !== null && _a !== void 0 ? _a : (state.locations = {});
84
- (_b = (_e = state.locations)[declaratorId]) !== null && _b !== void 0 ? _b : (_e[declaratorId] = {});
85
- state.locations[declaratorId][key.node.name] = {
86
- ...property.node.loc,
87
- };
88
- const commentDirectives = parseCommentDirectives(property.node.leadingComments);
89
- if (commentDirectives) {
90
- (_c = state.commentDirectives) !== null && _c !== void 0 ? _c : (state.commentDirectives = {});
91
- (_d = (_f = state.commentDirectives)[declaratorId]) !== null && _d !== void 0 ? _d : (_f[declaratorId] = {});
92
- state.commentDirectives[declaratorId][key.node.name] = commentDirectives;
93
- }
94
- });
95
- }
96
- if (resetFunctionKinds.includes(callee.node.name)) {
97
- if (path.node.loc) {
98
- (_b = state.callExpressionLocations) !== null && _b !== void 0 ? _b : (state.callExpressionLocations = {});
99
- state.callExpressionLocations[declaratorId] = {
100
- ...path.node.loc,
101
- };
102
- }
103
- (_c = state.resetLocations) !== null && _c !== void 0 ? _c : (state.resetLocations = {});
104
- const resetStyles = path.get('arguments')[0];
105
- if (!resetStyles.isObjectExpression()) {
106
- return;
107
- }
108
- if (!resetStyles.node.loc) {
109
- return;
110
- }
111
- state.resetLocations[declaratorId] = resetStyles.node.loc;
112
- // For reset styles we only care about the comment directives on the variable declaration
113
- // The leading commment can either be attached to a variable declaration of an export declaration (i.e. export const useResetStyles = ...)
114
- const parentDeclaration = (_d = path.findParent(p => p.isExportNamedDeclaration())) !== null && _d !== void 0 ? _d : path.findParent(p => p.isVariableDeclaration());
115
- if (parentDeclaration) {
116
- const commentDirectives = parseCommentDirectives(parentDeclaration.node.leadingComments);
117
- if (commentDirectives) {
118
- (_e = state.resetCommentDirectives) !== null && _e !== void 0 ? _e : (state.resetCommentDirectives = {});
119
- state.resetCommentDirectives[declaratorId] = commentDirectives;
120
- }
121
- }
122
- }
123
- },
124
- },
125
- };
126
- });
127
- function parseCommentDirectives(leadingComments) {
128
- if (!leadingComments) {
129
- return null;
130
- }
131
- const entries = leadingComments
132
- // We don't support comment blocks
133
- .filter(comment => comment.type === 'CommentLine')
134
- .map(comment => {
135
- const commentValue = comment.value.trim();
136
- if (!commentValue.startsWith('griffel-')) {
137
- return;
138
- }
139
- const tokens = commentValue.split(' ');
140
- return [tokens[0], tokens[1]];
141
- })
142
- .filter(Boolean);
143
- return entries;
144
- }
145
- exports.default = (babel, options) => {
146
- return {
147
- plugins: [[plugin, options]],
148
- };
149
- };
150
- //# sourceMappingURL=location-preset.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"location-preset.js","sourceRoot":"","sources":["../../../../packages/postcss-syntax/src/location-preset.ts"],"names":[],"mappings":"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"}
@@ -1,13 +0,0 @@
1
- import type { BabelPluginMetadata, BabelPluginOptions } from '@griffel/babel-preset';
2
- import type { LocationPluginMetadata } from './location-preset';
3
- export type TransformOptions = {
4
- filename: string;
5
- pluginOptions: BabelPluginOptions;
6
- };
7
- /**
8
- * Transforms passed source code with Babel, uses user's config for parsing, but ignores it for transforms.
9
- */
10
- export default function transformSync(sourceCode: string, options: TransformOptions): {
11
- metadata: BabelPluginMetadata & LocationPluginMetadata;
12
- code: string | null | undefined;
13
- };
@@ -1,30 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = transformSync;
4
- const Babel = require("@babel/core");
5
- const babel_preset_1 = require("@griffel/babel-preset");
6
- const location_preset_1 = require("./location-preset");
7
- /**
8
- * Transforms passed source code with Babel, uses user's config for parsing, but ignores it for transforms.
9
- */
10
- function transformSync(sourceCode, options) {
11
- var _a;
12
- const { plugins, presets } = (_a = options.pluginOptions.babelOptions) !== null && _a !== void 0 ? _a : { plugins: [], presets: [] };
13
- const babelFileResult = Babel.transformSync(sourceCode, {
14
- // Ignore all user's configs and apply only our plugin
15
- babelrc: false,
16
- configFile: false,
17
- plugins,
18
- presets: [...(presets !== null && presets !== void 0 ? presets : []), [babel_preset_1.default, options.pluginOptions], [location_preset_1.default, options.pluginOptions]],
19
- filename: options.filename,
20
- sourceFileName: options.filename,
21
- });
22
- if (babelFileResult === null) {
23
- throw new Error(`Failed to transform "${options.filename}" due unknown Babel error...`);
24
- }
25
- return {
26
- metadata: babelFileResult.metadata,
27
- code: babelFileResult.code,
28
- };
29
- }
30
- //# sourceMappingURL=transform-sync.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"transform-sync.js","sourceRoot":"","sources":["../../../../packages/postcss-syntax/src/transform-sync.ts"],"names":[],"mappings":";;AAcA,gCAqBC;AAnCD,qCAAqC;AAErC,wDAAkD;AAElD,uDAA+C;AAO/C;;GAEG;AACH,SAAwB,aAAa,CAAC,UAAkB,EAAE,OAAyB;;IACjF,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG,MAAA,OAAO,CAAC,aAAa,CAAC,YAAY,mCAAI,EAAE,OAAO,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC;IAChG,MAAM,eAAe,GAAG,KAAK,CAAC,aAAa,CAAC,UAAU,EAAE;QACtD,sDAAsD;QACtD,OAAO,EAAE,KAAK;QACd,UAAU,EAAE,KAAK;QACjB,OAAO;QACP,OAAO,EAAE,CAAC,GAAG,CAAC,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,EAAE,CAAC,EAAE,CAAC,sBAAa,EAAE,OAAO,CAAC,aAAa,CAAC,EAAE,CAAC,yBAAc,EAAE,OAAO,CAAC,aAAa,CAAC,CAAC;QAE9G,QAAQ,EAAE,OAAO,CAAC,QAAQ;QAC1B,cAAc,EAAE,OAAO,CAAC,QAAQ;KACjC,CAAC,CAAC;IAEH,IAAI,eAAe,KAAK,IAAI,EAAE,CAAC;QAC7B,MAAM,IAAI,KAAK,CAAC,wBAAwB,OAAO,CAAC,QAAQ,8BAA8B,CAAC,CAAC;IAC1F,CAAC;IAED,OAAO;QACL,QAAQ,EAAE,eAAe,CAAC,QAAmE;QAC7F,IAAI,EAAE,eAAe,CAAC,IAAI;KAC3B,CAAC;AACJ,CAAC"}