You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
538 B
17 lines
538 B
'use strict';
|
|
|
|
// Use this require pattern so that syntaxes can be bundled separately
|
|
const importLazy = require('import-lazy')(require);
|
|
|
|
/** @typedef {import('../getPostcssResult').Syntax} Syntax */
|
|
/** @type {{[k: string]: Syntax}} */
|
|
module.exports = {
|
|
'css-in-js': importLazy('./syntax-css-in-js'),
|
|
html: importLazy('./syntax-html'),
|
|
less: importLazy('./syntax-less'),
|
|
markdown: importLazy('./syntax-markdown'),
|
|
sass: importLazy('./syntax-sass'),
|
|
scss: importLazy('./syntax-scss'),
|
|
sugarss: importLazy('./syntax-sugarss'),
|
|
};
|