Skip to content

Commit 7b1ec54

Browse files
authored
Appropriate JSDoc for the postcss plugin handler (#5305)
1 parent fd97688 commit 7b1ec54

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • packages/postcss-viewport-to-container-toggle

packages/postcss-viewport-to-container-toggle/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
const createCoreProcessor = require('./src/core/processor');
2+
const createPostcssAdapter = require('./src/core/postcssAdapter');
3+
14
/**
25
* PostCSS plugin to toggle viewport units into container query units.
36
*
@@ -19,9 +22,6 @@
1922
* logs to specific files.
2023
* @returns {Object} The PostCSS plugin.
2124
*/
22-
const createCoreProcessor = require('./src/core/processor');
23-
const createPostcssAdapter = require('./src/core/postcssAdapter');
24-
2525
const plugin = (opts = {}) => {
2626
const coreProcessor = createCoreProcessor(opts);
2727

0 commit comments

Comments
 (0)