Skip to content

Commit 40f32ee

Browse files
authored
Merge pull request #1077 from privy-open-source/release/0.27.0
release: `0.27.0`
2 parents aaba8c3 + 39d6922 commit 40f32ee

File tree

9 files changed

+330
-14
lines changed

9 files changed

+330
-14
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@privyid/design-system",
3-
"version": "0.26.0",
3+
"version": "0.27.0",
44
"packageManager": "yarn@4.0.2",
55
"private": true,
66
"type": "module",
@@ -18,10 +18,10 @@
1818
"fix": "yarn lint --fix",
1919
"coverage": "vitest run --coverage --reporter=dot",
2020
"postinstall": "husky install",
21-
"packages:prepare": "yarn workspaces foreach -v --topological-dev run prepare",
22-
"packages:build": "yarn workspaces foreach -v --topological-dev run build",
23-
"release": "yarn workspaces foreach -v --topological-dev --no-private npm publish --tolerate-republish",
24-
"release:prepare": "yarn workspaces foreach -v --topological-dev version",
21+
"packages:prepare": "yarn workspaces foreach -A -v --topological-dev run prepare",
22+
"packages:build": "yarn workspaces foreach -A -v --topological-dev run build",
23+
"release": "yarn workspaces foreach -A -v --topological-dev --no-private npm publish --tolerate-republish",
24+
"release:prepare": "yarn workspaces foreach -A -v --topological-dev version",
2525
"icon:sync": "yarn workspace @privyid/persona-icon sync",
2626
"icon:changelog": "yarn workspace @privyid/persona-icon changelog"
2727
},

packages/browserslist-config/package.json

Lines changed: 2 additions & 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.26.0",
4+
"version": "0.27.0",
55
"packageManager": "yarn@4.0.2",
66
"license": "MIT",
77
"repository": {
@@ -17,6 +17,7 @@
1717
"main": "./index.js",
1818
"types": "./index.d.ts",
1919
"files": [
20+
"./index.d.ts",
2021
"./browserslist-stats.json"
2122
],
2223
"publishConfig": {

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.26.0",
4+
"version": "0.27.0",
55
"packageManager": "yarn@4.0.2",
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.26.0",
4+
"version": "0.27.0",
55
"packageManager": "yarn@4.0.2",
66
"type": "module",
77
"main": "./dist/module.cjs",

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.26.0",
4+
"version": "0.27.0",
55
"license": "MIT",
66
"repository": {
77
"url": "https://github.com/privy-open-source/design-system.git",

packages/tailwind-animation/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/tailwind-animation",
33
"description": "Collection animation class for vue `<transition>`",
4-
"version": "0.26.0",
4+
"version": "0.27.0",
55
"packageManager": "yarn@4.0.2",
66
"license": "MIT",
77
"repository": {
@@ -17,7 +17,9 @@
1717
"main": "./index.js",
1818
"types": "./index.d.ts",
1919
"files": [
20-
"./base.js"
20+
"./base.js",
21+
"./base.d.ts",
22+
"./index.d.ts"
2123
],
2224
"peerDependencies": {
2325
"tailwind": ">= 3.0.0"

packages/tailwind-extended/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/tailwind-extended",
33
"description": "Add missing tailwind utilities",
4-
"version": "0.26.0",
4+
"version": "0.27.0",
55
"packageManager": "yarn@4.0.2",
66
"license": "MIT",
77
"repository": {
@@ -16,6 +16,9 @@
1616
"homepage": "https://privy-open-source.github.io/design-system/",
1717
"main": "./index.js",
1818
"types": "./index.d.ts",
19+
"files": [
20+
"./index.d.ts"
21+
],
1922
"peerDependencies": {
2023
"tailwind": ">= 3.0.0"
2124
},

packages/tailwind-preset/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@privyid/tailwind-preset",
33
"description": "Tailwind preset for Persona project",
4-
"version": "0.26.0",
4+
"version": "0.27.0",
55
"packageManager": "yarn@4.0.2",
66
"license": "MIT",
77
"repository": {
@@ -17,7 +17,8 @@
1717
"main": "./index.js",
1818
"types": "./index.d.ts",
1919
"files": [
20-
"./basic.js"
20+
"./basic.js",
21+
"./index.d.ts"
2122
],
2223
"peerDependencies": {
2324
"tailwind": ">= 3.0.0"

0 commit comments

Comments
 (0)