Skip to content

Commit

Permalink
chore(deps-dev): bump esbuild from 0.23.1 to 0.24.0 in the developmen…
Browse files Browse the repository at this point in the history
…t-dependencies group (#57)

* chore(deps-dev): bump esbuild in the development-dependencies group

Bumps the development-dependencies group with 1 update: [esbuild](https://github.com/evanw/esbuild).


Updates `esbuild` from 0.23.1 to 0.24.0
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.23.1...v0.24.0)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore: update lockfile

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: tonypinkevych <tony@aninix.com>
  • Loading branch information
dependabot[bot] and tonypinkevych authored Sep 28, 2024
1 parent 03e8388 commit 54e547e
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@biomejs/biome": "^1.5.3",
"@figma/plugin-typings": "^1.93.0",
"@types/bun": "^1.0.5",
"esbuild": "^0.23.0",
"esbuild": "^0.24.0",
"json-schema-to-typescript": "^15.0.0",
"knip": "^5.0.1",
"prettier": "^3.2.5",
Expand Down
32 changes: 30 additions & 2 deletions src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,9 @@ export type SpatialPoint2DKey = SpatialPoint2DKeyV1
export type SpatialPoint2D = [number, number, number, number, number, number]
export type CurveStyle = CurveStyleV1
export type Name = string
export type ExportPreset = ExportPresetV1
export type ExportPreset = ExportPresetV1 | ExportPresetV2
/**
* [DEPRECATED] Use RenderScaleComponent instead. In the next version we are supporting any render scales (eg using numbers).
* Used to determine exporting file scaling factor
*/
export type RenderScaleType =
Expand Down Expand Up @@ -128,6 +129,11 @@ export type RenderType =
* Define custom suffix for rendered file
*/
export type RenderSuffix = string
/**
* Used to determine exporting file scaling factor
*/
export type RenderScale = number
export type Version = number
export type Ellipse = EllipseV1
export type StartAngle = number
export type EndAngle = number
Expand Down Expand Up @@ -319,7 +325,6 @@ export type HangingList = boolean
* Whether updating the characters in the text node should update the name of the node. If this is set to true, name will be auto-derived from characters.
*/
export type AutoRename = boolean
export type Version = number
export type Vector = VectorV1
export type ColorStop = ColorStopV1
export type Progress = number
Expand Down Expand Up @@ -718,6 +723,29 @@ export interface ExportPresetV1 {
}
[k: string]: unknown
}
export interface ExportPresetV2 {
/**
* Unique entity identifier
*/
id: string
/**
* Type of the entity
*/
tag: 'exportPreset'
/**
* Current schema version of the entity
*/
schemaVersion: 2
components: {
entityType: EntityType
renderScale: RenderScale
renderType: RenderType
renderSuffix: RenderSuffix
version: Version
[k: string]: unknown
}
[k: string]: unknown
}
export interface EllipseV1 {
/**
* Unique entity identifier
Expand Down

0 comments on commit 54e547e

Please sign in to comment.