Skip to content

Commit

Permalink
chore: release versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bae-unidev committed Dec 6, 2024
1 parent e40091b commit 1def9fb
Show file tree
Hide file tree
Showing 25 changed files with 52 additions and 23 deletions.
2 changes: 2 additions & 0 deletions packages/utils-eslint-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [0.91.3](https://github.com/pedaling/opensource/compare/utils-eslint-config-0.91.2...utils-eslint-config-0.91.3) (2024-12-06)

## [0.91.2](https://github.com/pedaling/opensource/compare/utils-eslint-config-0.91.1...utils-eslint-config-0.91.2) (2024-12-06)

## [0.91.1](https://github.com/pedaling/opensource/compare/utils-eslint-config-0.91.0...utils-eslint-config-0.91.1) (2024-12-06)
Expand Down
2 changes: 1 addition & 1 deletion packages/utils-eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@class101/eslint-config",
"version": "0.91.2",
"version": "0.91.3",
"private": false,
"sideEffects": false,
"main": "src/index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-components-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [0.94.3](https://github.com/pedaling/opensource/compare/vibrant-components-web-0.94.2...vibrant-components-web-0.94.3) (2024-12-06)

## [0.94.2](https://github.com/pedaling/opensource/compare/vibrant-components-web-0.94.1...vibrant-components-web-0.94.2) (2024-12-06)

## [0.94.1](https://github.com/pedaling/opensource/compare/vibrant-components-web-0.94.0...vibrant-components-web-0.94.1) (2024-12-06)
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-components-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant-ui/components-web",
"version": "0.94.2",
"version": "0.94.3",
"private": false,
"sideEffects": false,
"peerDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [0.94.3](https://github.com/pedaling/opensource/compare/vibrant-components-0.94.2...vibrant-components-0.94.3) (2024-12-06)

## [0.94.2](https://github.com/pedaling/opensource/compare/vibrant-components-0.94.1...vibrant-components-0.94.2) (2024-12-06)

## [0.94.1](https://github.com/pedaling/opensource/compare/vibrant-components-0.94.0...vibrant-components-0.94.1) (2024-12-06)
Expand Down
3 changes: 2 additions & 1 deletion packages/vibrant-components/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "@vibrant-ui/components",
"version": "0.94.2",
"version": "0.94.3",
"private": false,
"sideEffects": false,
"react-native": "index.native.cjs",
"peerDependencies": {
"@types/react": "^17.0.0 || ^18.0.0",
"react": "^17.0.0 || ^18.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,15 @@ export const ModalBottomSheet = withModalBottomSheetVariation(
() =>
Gesture.Pan()
.onChange(event => {
'worklet';

if (event.translationY > 0) {
offset.value = event.translationY;
}
})
.onFinalize(event => {
'worklet';

if (
Math.abs(event.translationX) < 10 &&
Math.abs(event.translationY) < 10 &&
Expand Down Expand Up @@ -153,11 +157,15 @@ export const ModalBottomSheet = withModalBottomSheetVariation(
() =>
Gesture.Pan()
.onChange(event => {
'worklet';

if (event.translationY > 0) {
offset.value = event.translationY;
}
})
.onFinalize(event => {
'worklet';

if (
event.translationY > containerHeight * native_swipeToCloseThreshold ||
event.velocityY > native_swipeToCloseVelocity
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [0.94.3](https://github.com/pedaling/opensource/compare/vibrant-core-0.94.2...vibrant-core-0.94.3) (2024-12-06)

## [0.94.2](https://github.com/pedaling/opensource/compare/vibrant-core-0.94.1...vibrant-core-0.94.2) (2024-12-06)

## [0.94.1](https://github.com/pedaling/opensource/compare/vibrant-core-0.94.0...vibrant-core-0.94.1) (2024-12-06)
Expand Down
4 changes: 2 additions & 2 deletions packages/vibrant-core/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@vibrant-ui/core",
"version": "0.94.2",
"version": "0.94.3",
"private": false,
"sideEffects": false,
"react-native": "index.native",
"react-native": "index.native.cjs",
"peerDependencies": {
"@types/react": "^17.0.0 || ^18.0.0",
"react": "^17.0.0 || ^18.0.0",
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-forms/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [0.94.3](https://github.com/pedaling/opensource/compare/vibrant-forms-0.94.2...vibrant-forms-0.94.3) (2024-12-06)

## [0.94.2](https://github.com/pedaling/opensource/compare/vibrant-forms-0.94.1...vibrant-forms-0.94.2) (2024-12-06)

## [0.94.1](https://github.com/pedaling/opensource/compare/vibrant-forms-0.94.0...vibrant-forms-0.94.1) (2024-12-06)
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-forms/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant-ui/forms",
"version": "0.94.2",
"version": "0.94.3",
"private": false,
"sideEffects": false,
"peerDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-icons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [0.94.3](https://github.com/pedaling/opensource/compare/vibrant-icons-0.94.2...vibrant-icons-0.94.3) (2024-12-06)

## [0.94.2](https://github.com/pedaling/opensource/compare/vibrant-icons-0.94.1...vibrant-icons-0.94.2) (2024-12-06)

## [0.94.1](https://github.com/pedaling/opensource/compare/vibrant-icons-0.94.0...vibrant-icons-0.94.1) (2024-12-06)
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant-ui/icons",
"version": "0.94.2",
"version": "0.94.3",
"private": false,
"sideEffects": false,
"peerDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-layouts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [0.94.3](https://github.com/pedaling/opensource/compare/vibrant-layouts-0.94.2...vibrant-layouts-0.94.3) (2024-12-06)

## [0.94.2](https://github.com/pedaling/opensource/compare/vibrant-layouts-0.94.1...vibrant-layouts-0.94.2) (2024-12-06)

## [0.94.1](https://github.com/pedaling/opensource/compare/vibrant-layouts-0.94.0...vibrant-layouts-0.94.1) (2024-12-06)
Expand Down
4 changes: 2 additions & 2 deletions packages/vibrant-layouts/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@vibrant-ui/layouts",
"version": "0.94.2",
"version": "0.94.3",
"private": false,
"sideEffects": false,
"react-native": "index.native",
"react-native": "index.native.cjs",
"peerDependencies": {
"@types/react": "^17.0.0 || ^18.0.0",
"react": "^17.0.0 || ^18.0.0",
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-motion/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [0.94.3](https://github.com/pedaling/opensource/compare/vibrant-motion-0.94.2...vibrant-motion-0.94.3) (2024-12-06)

## [0.94.2](https://github.com/pedaling/opensource/compare/vibrant-motion-0.94.1...vibrant-motion-0.94.2) (2024-12-06)

## [0.94.1](https://github.com/pedaling/opensource/compare/vibrant-motion-0.94.0...vibrant-motion-0.94.1) (2024-12-06)
Expand Down
4 changes: 2 additions & 2 deletions packages/vibrant-motion/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@vibrant-ui/motion",
"version": "0.94.2",
"version": "0.94.3",
"private": false,
"sideEffects": false,
"react-native": "index.native",
"react-native": "index.native.cjs",
"peerDependencies": {
"@types/react": "^17.0.0 || ^18.0.0",
"react": "^17.0.0 || ^18.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-motion/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"outputPath": "dist/packages/vibrant-motion",
"tsConfig": "packages/vibrant-motion/tsconfig.native.json",
"project": "packages/vibrant-motion/package.json",
"outputFileName": "index.native.cjs",
"outputFileName": "index.native.js",
"main": "packages/vibrant-motion/src/index.ts",
"external": ["react/jsx-runtime"],
"format": ["cjs"],
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-theme/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [0.94.3](https://github.com/pedaling/opensource/compare/vibrant-theme-0.94.2...vibrant-theme-0.94.3) (2024-12-06)

## [0.94.2](https://github.com/pedaling/opensource/compare/vibrant-theme-0.94.1...vibrant-theme-0.94.2) (2024-12-06)

## [0.94.1](https://github.com/pedaling/opensource/compare/vibrant-theme-0.94.0...vibrant-theme-0.94.1) (2024-12-06)
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant-ui/theme",
"version": "0.94.2",
"version": "0.94.3",
"private": false,
"sideEffects": false,
"peerDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [0.94.3](https://github.com/pedaling/opensource/compare/vibrant-utils-0.94.2...vibrant-utils-0.94.3) (2024-12-06)

## [0.94.2](https://github.com/pedaling/opensource/compare/vibrant-utils-0.94.1...vibrant-utils-0.94.2) (2024-12-06)

## [0.94.1](https://github.com/pedaling/opensource/compare/vibrant-utils-0.94.0...vibrant-utils-0.94.1) (2024-12-06)
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant-ui/utils",
"version": "0.94.2",
"version": "0.94.3",
"private": false,
"sideEffects": false,
"peerDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions packages/workspace-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [0.73.3](https://github.com/pedaling/opensource/compare/workspace-plugin-0.73.2...workspace-plugin-0.73.3) (2024-12-06)

## [0.73.2](https://github.com/pedaling/opensource/compare/workspace-plugin-0.73.1...workspace-plugin-0.73.2) (2024-12-06)

## [0.73.1](https://github.com/pedaling/opensource/compare/workspace-plugin-0.73.0...workspace-plugin-0.73.1) (2024-12-06)
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@class101/workspace-plugin",
"version": "0.73.2",
"version": "0.73.3",
"main": "src/index.js",
"generators": "./generators.json",
"executors": "./executors.json"
Expand Down
14 changes: 6 additions & 8 deletions tools/config/rollup-config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
module.exports = function rollupConfig(config, options) {
return {
...config,
output: config.output.map((output) => {
return {
...output,
interop: 'auto',
};
}),
}
}
output: config.output.map(output => ({
...output,
interop: 'auto',
})),
};
};

0 comments on commit 1def9fb

Please sign in to comment.