Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: reorganize components for publishing #201

Merged
merged 40 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
cf01595
refactor: reorganise components for publishing
Jan 31, 2024
f00ce42
redesign(Embed): update dependencies to new format
Jan 31, 2024
d01006c
config(GH-Actions): modify lint action for new folder name
Jan 31, 2024
6ba6aae
config(gitignore): remove build files
Jan 31, 2024
8a88ff5
fix: remove test code for published document-capture component
Jan 31, 2024
b3ce32a
Merge branch 'main' into chore/fix-workspaces-for-components-publishing
Jan 31, 2024
35c9211
chore(gh-actions): update versions for setup-node, upload-artifact
Jan 31, 2024
acfea5f
fix: update package-lock.json
Jan 31, 2024
0d49592
config(gh-actions): add cache and cache-dependency-path
Jan 31, 2024
c5af596
config(gh-actions): use root file as cache-dependency-path
Jan 31, 2024
66f0e2a
Merge branch 'main' into chore/fix-workspaces-for-components-publishing
tamssokari Jan 31, 2024
c7ed83e
config: update package-lock.json
Feb 1, 2024
657e816
refactor: set up publishing for components
Feb 1, 2024
233ee74
config: change components directory in embed
Feb 1, 2024
acc6d7a
fix: run linter on web-components
Feb 2, 2024
633d527
Merge branch 'main' into chore/fix-workspaces-for-components-publishing
ayinloya Feb 6, 2024
cecfbe1
refactor for publication
ayinloya Feb 9, 2024
68ad191
remove cypress screenshots
ayinloya Feb 9, 2024
6e7d7b5
move components to components dir
ayinloya Feb 13, 2024
f07630b
move components to components folder
ayinloya Feb 14, 2024
0e1f0cd
Fix lint
ayinloya Feb 14, 2024
5669390
Merge branch 'main' into chore/fix-workspaces-for-components-publishing
mldangelo Feb 14, 2024
3bcc2f9
add back exports
ayinloya Feb 20, 2024
a333562
Merge branch 'main' into chore/fix-workspaces-for-components-publishing
ayinloya Feb 20, 2024
aeaeadc
export selfie-capture
ayinloya Feb 21, 2024
eed0672
Fix lint issue
ayinloya Feb 21, 2024
23f8a05
Merge branch 'main' into chore/fix-workspaces-for-components-publishing
ayinloya Feb 22, 2024
db4be9d
Add custom resolver
ayinloya Feb 22, 2024
5c2d07a
rename readme
ayinloya Feb 27, 2024
76c19d9
remove unused file
ayinloya Feb 27, 2024
971fd53
remove empty readmes
ayinloya Feb 27, 2024
154b0ec
Merge branch 'main' into chore/fix-workspaces-for-components-publishing
ayinloya Feb 27, 2024
dbdd152
Remove empty file
ayinloya Feb 27, 2024
44a07d4
Merge branch 'main' into chore/fix-workspaces-for-components-publishing
ayinloya Mar 4, 2024
7306de0
revert changes in smart-camera-web
ayinloya Mar 4, 2024
3682463
remove eslint disabled
ayinloya Mar 4, 2024
d9e2b41
Remove custom resolver from eslintconfig
ayinloya Mar 4, 2024
dd4b0ff
docs: add comments explaining the custom eslint resolver
Mar 4, 2024
a7bf547
Remove redundant files
ayinloya Mar 5, 2024
2f5a907
refactor: remove redundant storybook files
Mar 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ on:
pull_request:
workflow_dispatch:
jobs:
components:
web-components:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/components
working-directory: ./packages/web-components
steps:
- name: checkout code
uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# build packages
build

# Logs
logs
*.log
Expand Down
4 changes: 2 additions & 2 deletions .storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ function getAbsolutePath(value) {
/** @type { import('@storybook/web-components-vite').StorybookConfig } */
const config = {
stories: [
"../packages/components/**/**/*.mdx",
"../packages/components/**/**/*.stories.@(js|jsx|mjs|ts|tsx)",
"../packages/web-components/**/**/*.mdx",
"../packages/web-components/**/**/*.stories.@(js|jsx|mjs|ts|tsx)",
],
addons: [
getAbsolutePath("@storybook/addon-links"),
Expand Down
Loading