Use <link> instead of <style> in dev #879
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | name: ⚡️ Continuous Releases | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 1.x | |
| merge_group: | |
| pull_request: | |
| jobs: | |
| cr: | |
| name: "⚡️ Continuous Releases" | |
| strategy: | |
| fail-fast: false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v3 | |
| - name: Use Node.js from .nvmrc | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: ".nvmrc" | |
| registry-url: "https://registry.npmjs.org" | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Build start | |
| run: | | |
| pnpm run build | |
| # rewrite .ts exports to .js | |
| pnpm --filter='./packages/*' -c exec "echo \$(cat package.json | jq '.exports = .publishConfig.exports') > package.json" | |
| - name: Release | |
| run: | | |
| pnpm dlx [email protected] publish './packages/start' --template './examples/*' --compact |