Skip to content

Commit f0df040

Browse files
committed
chore: bump version to 0.26.0
1 parent c0e5c30 commit f0df040

File tree

14 files changed

+359
-14
lines changed

14 files changed

+359
-14
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@privyid/design-system",
3-
"version": "0.25.2",
3+
"version": "0.26.0",
44
"packageManager": "yarn@3.6.4",
55
"private": true,
66
"type": "module",

packages/browserslist-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/browserslist-config",
33
"description": "Browserslist shareable config for Persona project",
4-
"version": "0.25.2",
4+
"version": "0.26.0",
55
"packageManager": "yarn@3.6.4",
66
"license": "MIT",
77
"repository": {

packages/eslint-config-persona/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/eslint-config-persona",
33
"description": "Eslint shareable config for Persona project",
4-
"version": "0.25.2",
4+
"version": "0.26.0",
55
"packageManager": "yarn@3.6.4",
66
"license": "MIT",
77
"repository": {

packages/persona-icon/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/persona-icon",
33
"description": "Persona icon package",
4-
"version": "0.25.2",
4+
"version": "0.26.0",
55
"packageManager": "yarn@3.6.4",
66
"type": "module",
77
"main": "./dist/module.cjs",

packages/persona-icon/scripts/changelog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import { resolve } from 'node:path'
66
import { readJSON } from 'fs-extra'
77
import { name } from '../package.json'
8-
import { MetaData } from './types'
8+
import type { MetaData } from './types'
99
import got from 'got'
1010
import ohash from 'ohash'
1111
import minimist from 'minimist'

packages/persona-icon/scripts/create-font.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
basename,
1212
} from 'node:path'
1313
import { createHash } from 'node:crypto'
14-
import { Result } from 'webfont/dist/src/types/Result'
14+
import type { Result } from 'webfont/dist/src/types/Result'
1515
import { EOL } from 'node:os'
1616

1717
const SVG_DIR = resolve(__dirname, '../svg/')

packages/persona-icon/scripts/fix-svg.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import SVGPath, { PathArray } from 'svg-path-commander'
1+
import type { PathArray } from 'svg-path-commander'
2+
import SVGPath from 'svg-path-commander'
23
import { orderBy } from 'lodash-es'
34

45
type Point = ReturnType<typeof SVGPath['getPointAtLength']>

packages/persona-icon/scripts/lint.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/* eslint-disable unicorn/prefer-top-level-await */
44
import { readJSON } from 'fs-extra'
55
import { resolve } from 'node:path'
6-
import { MetaData } from './types'
6+
import type { MetaData } from './types'
77

88
const META_FILE = resolve(__dirname, '../svg/meta.json')
99

packages/persona-icon/scripts/sync.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,12 @@ import {
2121
join,
2222
} from 'node:path'
2323
import { kebabCase, chunk } from 'lodash-es'
24-
import { Config, optimize } from 'svgo'
24+
import type { Config } from 'svgo'
25+
import { optimize } from 'svgo'
2526
import download from 'download'
2627
import ora from 'ora'
2728
import { ESLint } from 'eslint'
28-
import { ObjectData, MetaData } from './types'
29+
import type { ObjectData, MetaData } from './types'
2930
import { fixPath } from './fix-svg'
3031
import { createFont } from './create-font'
3132
import pAll from 'p-all'

packages/persona/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/persona",
33
"description": "Persona core package",
4-
"version": "0.25.2",
4+
"version": "0.26.0",
55
"license": "MIT",
66
"repository": {
77
"url": "https://github.com/privy-open-source/design-system.git",

0 commit comments

Comments
 (0)