design-md-generator 1.1.0 → 1.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "design-md-generator",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "Generate DESIGN.md files from any website using Puppeteer to extract design tokens",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -11,8 +11,8 @@ const path = require('path');
11
11
  // File discovery
12
12
  // ============================================================
13
13
 
14
- const STYLE_EXTENSIONS = new Set(['.css', '.scss', '.sass', '.less', '.styl', '.stylus']);
15
- const TEMPLATE_EXTENSIONS = new Set(['.html', '.htm', '.jsx', '.tsx', '.vue', '.svelte']);
14
+ const STYLE_EXTENSIONS = new Set(['.css', '.scss', '.sass', '.less', '.styl', '.stylus', '.wxss', '.acss']);
15
+ const TEMPLATE_EXTENSIONS = new Set(['.html', '.htm', '.jsx', '.tsx', '.vue', '.svelte', '.wxml', '.axml', '.swan']);
16
16
  const CONFIG_FILES = new Set([
17
17
  'tailwind.config.js', 'tailwind.config.ts', 'tailwind.config.mjs', 'tailwind.config.cjs',
18
18
  'theme.js', 'theme.ts', 'tokens.js', 'tokens.ts', 'tokens.json',