Skip to content

Commit

Permalink
remove master-esm in workflow + properly compile core.css file
Browse files Browse the repository at this point in the history
  • Loading branch information
alexasselin008 committed Nov 22, 2024
1 parent 4f3cc7c commit e223174
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/dry-terms-repeat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@workleap/orbiter-ui": patch
---

properly export core.css file
2 changes: 1 addition & 1 deletion .github/workflows/changeset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Changeset

on:
push:
branches: ["master", "master-esm"]
branches: ["master"]

jobs:
release:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: CI

on:
push:
branches: ["master", "master-esm"]
branches: ["master"]
pull_request:
branches: ["master", "master-esm"]
branches: ["master"]

concurrency:
group: ${{ github.ref }}
Expand Down
5 changes: 4 additions & 1 deletion packages/components/tsup.build.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import { defineBuildConfig } from "@workleap/tsup-configs";

export default defineBuildConfig({
entry: ["./src/index.(ts|tsx|css)", "./src/**/src/**/*.(ts|tsx|css)"]
entry: [
"./src/index.(ts|tsx|css)",
"./src/core.css",
"./src/**/src/**/*.(ts|tsx|css)"]
});

0 comments on commit e223174

Please sign in to comment.