-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
23 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,13 +11,16 @@ jobs: | |
- name: Build the package | ||
run: | | ||
npm install | ||
npm run build | ||
LIB_ENTRY=components npm run build | ||
LIB_ENTRY=utils npm run build | ||
LIB_ENTRY=theme npm run build | ||
cp src/index.d.ts dist/ | ||
- name: Prepare files for archiving | ||
env: | ||
FILES: package.json package-lock.json dist | ||
FILES: package.json package-lock.json | ||
run: | | ||
mkdir luminar | ||
cp -r $FILES luminar | ||
cp -r $FILES dist | ||
mv dist luminar | ||
- name: Archive the built package | ||
uses: TheDoctor0/[email protected] | ||
with: | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
import "../globals.css"; | ||
|
||
export * from "./Card"; | ||
export * from "./FixedBanner"; | ||
export * from "./FormButton"; | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export * as components from "./components"; | ||
export * as theme from "./theme"; | ||
export * as utils from "./utils"; |
This file was deleted.
Oops, something went wrong.
This file contains 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