Previously types file were splitted into their original folder tree structure. By enabling this option we could just get one global .d.ts file. To make this more handy I created a dedicated build bash file, the package.json was starting to get messy.
8 lines
102 B
Bash
Executable File
8 lines
102 B
Bash
Executable File
#!/bin/bash
|
|
tsc
|
|
yarn build-theme
|
|
vite build
|
|
yarn build-fonts
|
|
yarn build-icons
|
|
cp -R src/locales dist/
|