-
-
Notifications
You must be signed in to change notification settings - Fork 278
yomotsu:main←abernier:main #596
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
Draft
abernier
wants to merge
48
commits into
yomotsu:main
Choose a base branch
from
abernier:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
6a88c5f
remove closure vars in favor of static fields
abernier bb73162
exporting more
abernier e8c02ba
basic story
abernier d3c62a9
chromatic
abernier b89d332
St1,2
abernier 786fd80
decorator
abernier d53b964
setup
abernier b9fc156
better setup
abernier 22c4cb4
more snapshots
abernier 5ad8520
buttons list
abernier f53aa00
typecheck
abernier 2a10fe5
-button stories
abernier 1778ee5
pre-commit typecheck
abernier 988560a
userEvent
abernier 03f45ce
.
abernier 87d9c94
axesHelper
abernier e841545
canary
abernier 370f76e
.
abernier be11674
Merge pull request #595 from abernier/abernier-pkg
abernier db9898f
Revert "Merge pull request #595 from abernier/abernier-pkg"
abernier fedaa24
Merge pull request #3 from abernier/abernier-pkg
abernier bbbb01a
Merge branch 'dev' of https://github.com/yomotsu/camera-controls into…
abernier e1f41ed
@abernier/camera-controls own pkg
abernier 18d51d9
publishConfig public
abernier 013af86
fix: bump with doc
abernier f57c421
fix: bump2 with doc
abernier 4ed68e1
Merge pull request #1 from abernier/sb
abernier 8794de8
Merge branch 'main' of https://github.com/abernier/camera-controls in…
abernier c399c66
badges
abernier 6997881
Merge branch 'dev' of https://github.com/abernier/camera-controls int…
abernier 664bb5a
fix: test
abernier d74e79f
deploy only if main
abernier be3fb7c
npm badge
abernier e87f4da
fix: test2
abernier 11441fc
Merge pull request #2 from abernier/canary-abernier-pkg
abernier 8d527cc
Merge branch 'dev' of https://github.com/abernier/camera-controls int…
abernier 2f49774
pull_request:
abernier da5e202
Merge branch 'dev' of https://github.com/abernier/camera-controls int…
abernier 08657ee
push bump
abernier a641938
Merge pull request #5 from abernier/rm-module-closure-vars
abernier e421886
Merge pull request #6 from abernier/dev
abernier 0120198
fix: public this.ctor
abernier 4842c8a
disable format-on-save + restore README formatting
abernier ba2485c
dependabot
abernier f733cd7
relax engines.node for dependabot
abernier 3b8f8e3
chore: vitest (#8)
abernier 93a2a6c
feat: JSON spherical property (#7)
abernier 5608ed0
Merge pull request #9 from abernier/dev
abernier File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,35 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "daily" | ||
|
||
ignore: | ||
- dependency-name: "@types/node" | ||
|
||
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups | ||
groups: | ||
|
||
storybook-packages: | ||
patterns: | ||
- "storybook" | ||
- "@storybook/*" | ||
- "eslint-plugin-storybook" | ||
|
||
safe: | ||
update-types: | ||
- "minor" | ||
- "patch" | ||
exclude-patterns: | ||
# Excluding all 0.x leading-zero package (since dependabot consider eg: 0.7.3 -> 0.8.0 minor bump / as opposed to semver) | ||
- "three" | ||
- "typedoc" | ||
unsafe: | ||
update-types: | ||
- "major" |
This file contains hidden or 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,18 @@ | ||
name: "Chromatic" | ||
on: push | ||
|
||
jobs: | ||
chromatic: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
cache: "npm" | ||
node-version-file: ".nvmrc" | ||
- run: npm ci | ||
- run: npm run chromatic --exit-once-uploaded --auto-accept-changes main | ||
env: | ||
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} |
This file contains hidden or 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,19 @@ | ||
on: | ||
push: | ||
branches: [main, dev] | ||
pull_request: | ||
branches: [dev] | ||
|
||
jobs: | ||
lgtm: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: ".nvmrc" | ||
cache: "npm" | ||
- run: | | ||
npm ci | ||
npm test | ||
npm run build |
This file contains hidden or 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 hidden or 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,4 +11,6 @@ node_modules | |
yarn.lock | ||
docs | ||
|
||
/dist | ||
/dist | ||
*storybook.log | ||
storybook-static |
This file contains hidden or 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 +1,2 @@ | ||
npx lint-staged | ||
npm run typecheck |
This file contains hidden or 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 hidden or 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,14 @@ | ||
import type { StorybookConfig } from '@storybook/html-vite'; | ||
|
||
const config: StorybookConfig = { | ||
"stories": [ | ||
"../src/**/*.mdx", | ||
"../src/**/*.stories.@(js|jsx|mjs|ts|tsx)" | ||
], | ||
"addons": [], | ||
"framework": { | ||
"name": "@storybook/html-vite", | ||
"options": {} | ||
} | ||
}; | ||
export default config; |
This file contains hidden or 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,14 @@ | ||
import type { Preview } from '@storybook/html-vite'; | ||
|
||
const preview: Preview = { | ||
parameters: { | ||
controls: { | ||
matchers: { | ||
color: /(background|color)$/i, | ||
date: /Date$/i, | ||
}, | ||
}, | ||
}, | ||
}; | ||
|
||
export default preview; |
This file contains hidden or 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 @@ | ||
{ | ||
"editor.formatOnSave": false | ||
} |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
support for canary release for
canary-*
branches