-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: convert to monorepo, add a vue library and nuxt module (#432)
* converting monorepo (pnpm workspaces) * fixing symlinks issue in mdx * fixing ts config in packages/html * small fixes to tailwind config and mdx render * unifying prettier config and tsconfig * prototyping how to share story data between storybooks * completing @explorer-1/vue package * completing @explorer-1/storybook-vue app * updating makefile * switching vue vite to library mode * adding @explorer-1/nuxt module * adding module to makefile, minor cleanup * fixing duplicate modules in vite * fixing make commands, building module * removing ignored dist * updating gitignore * renaming storybook-* to *-storybook * updating Storybook to 8.1.2 * wip updating github workflow for pnpm * adding @explorer-1/common-storybook * disabling linting in ci (temporary), fixing storybook action * restore some linting actions * updating gitignore * adding gitkeep for public folder * Feature: monorepo eslint upgrade to flat config (#435) * adds .history folder to gitignore * linting passes * remove old eslint config files * remove --debug from eslint cli * convert packages/html to use vite instead of parcel parcel cleanup --------- Co-authored-by: James Ray <[email protected]>
- Loading branch information
1 parent
33e8e33
commit 1ce4e9d
Showing
430 changed files
with
24,232 additions
and
22,994 deletions.
There are no files selected for viewing
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
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,35 +1,75 @@ | ||
# mac OS | ||
.DS_Store | ||
|
||
# npm | ||
node_modules/ | ||
npm-debug.log | ||
|
||
# parcel.js | ||
.parcel-cache | ||
/src/.parcel | ||
# OSX | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
|
||
# Storybook | ||
storybook_compiled | ||
# Temp directories | ||
.temp | ||
.tmp | ||
.cache | ||
|
||
# Linter caches | ||
.eslintcache | ||
.stylelintcache | ||
|
||
# Logs | ||
*.log* | ||
|
||
# PyCharm | ||
.idea | ||
|
||
# vscode | ||
.vscode | ||
|
||
# IntelliJ | ||
# Intellij | ||
out/ | ||
*.iml | ||
.idea | ||
|
||
# mpeltonen/sbt-idea plugin | ||
.idea_modules/ | ||
|
||
# VSCode | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
!.vscode/*.code-snippets | ||
|
||
# Local History extension for VSCode | ||
.history | ||
|
||
# Testing | ||
reports | ||
coverage | ||
*.lcov | ||
.nyc_output | ||
|
||
# Storybook | ||
storybook_compiled | ||
|
||
# Nuxt | ||
.nuxt | ||
.output | ||
.data | ||
.vercel_build_output | ||
.build-* | ||
.netlify | ||
|
||
# Tailwind | ||
.www-frontend_temp/ | ||
|
||
# Linter caches | ||
.eslintcache | ||
.stylelintcache | ||
# copied assets when preparing builds | ||
apps/**/.storybook/static/dist | ||
packages/**/src/assets/fonts | ||
|
||
# logs | ||
.log | ||
# dist | ||
dist | ||
!packages/**/dist |
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,2 @@ | ||
shamefully-hoist=true | ||
package-manager-strict=false |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"recommendations": ["bradlc.vscode-tailwindcss", "Vue.volar"] | ||
} |
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 @@ | ||
{ | ||
"scss.lint.unknownAtRules": "ignore" | ||
} |
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
File renamed without changes.
File renamed without changes.
Oops, something went wrong.