Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit a6c8461

Browse files
author
Sean Dawson
committed
feat: export components rather than render functions
This change delegates the responsibility of rendering to the library consumer rather than the library itself. BREAKING CHANGE: The external interface has completely changed. It is not compatible with previous versions. fix #23
1 parent bce5606 commit a6c8461

File tree

11 files changed

+3611
-3537
lines changed

11 files changed

+3611
-3537
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
- run: npm run build
3232
- run: npm pack
3333
- run: mkdir -p artifacts && mv agiledigital-mule-preview-*.tgz artifacts/
34+
- run: npm run build-report && mv build-report.html artifacts/
3435

3536
- save_cache:
3637
paths:
@@ -42,7 +43,6 @@ jobs:
4243
- ./node_modules
4344
key: v2-dependencies-{{ checksum "package.json" }}
4445

45-
4646
- persist_to_workspace:
4747
root: ~/repo
4848
paths:
@@ -73,4 +73,4 @@ workflows:
7373
- build
7474
filters:
7575
branches:
76-
only: /master/
76+
only: /master/

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,4 @@ build/
121121
dist/
122122
dependencies
123123
.vscode
124+
build-report.html

0 commit comments

Comments
 (0)