Skip to content

Commit 2fb1904

Browse files
committed
chore: bump to v0.5.0
1 parent 7079f68 commit 2fb1904

File tree

10 files changed

+134
-27
lines changed

10 files changed

+134
-27
lines changed

package-lock.json

+116-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "root",
33
"private": true,
4-
"version": "0.4.0",
4+
"version": "0.5.0",
55
"workspaces": [
66
"packages/*",
77
"packages/angular-workspace/projects/*",
@@ -13,6 +13,7 @@
1313
"angular:build": "npm -w angular-workspace run build",
1414
"vue:build": "npm -w @poppy-ui/vue run build",
1515
"react:build": "npm -w @poppy-ui/react run build",
16+
"clean": "npm -w @poppy-ui/core run clean && npm -w @poppy-ui/vue run clean && npm -w @poppy-ui/react run clean && npm -w angular-workspace run clean",
1617
"format": "biome format",
1718
"format:fix": "biome format --write",
1819
"lint": "biome lint",

packages/angular-workspace/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "angular-workspace",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"type": "module",
55
"scripts": {
66
"ng": "ng",
7-
"clean": "rimraf .angular ./projects/**/css ./projects/**/dist",
8-
"postclean": "node ./scripts/copy-css.js",
9-
"prebuild": "npm run clean",
10-
"build": "ng build component-library"
7+
"clean": "rimraf .angular dist/ ./projects/**/css",
8+
"prebuild": "npm run clean && npm run copy:css",
9+
"build": "ng build component-library",
10+
"copy:css": "node ./scripts/copy-css.js"
1111
},
1212
"private": true,
1313
"dependencies": {

packages/angular-workspace/projects/component-library/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@poppy-ui/angular",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Angular specific wrapper for @poppy-ui/core",
55
"author": "Sukaato <sukaato.dev@proton.me>",
66
"homepage": "https://github.com/CheeseGrinder/poppy-ui#readme",
@@ -28,7 +28,7 @@
2828
"access": "public"
2929
},
3030
"dependencies": {
31-
"@poppy-ui/core": "0.4.0",
31+
"@poppy-ui/core": "0.5.0",
3232
"tslib": "^2.3.0"
3333
},
3434
"peerDependencies": {

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@poppy-ui/core",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Base component for Poppy based on Daisy-ui",
55
"author": "Sukaato <sukaato.dev@proton.me>",
66
"homepage": "https://github.com/CheeseGrinder/poppy-ui#readme",

packages/docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@poppy-ui/docs",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Pre-packaged API documentation for the Poppy docs.",
55
"author": "Sukaato <sukaato.dev@proton.me>",
66
"homepage": "https://github.com/CheeseGrinder/poppy-ui#readme",

packages/react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@poppy-ui/react",
33
"type": "module",
4-
"version": "0.4.0",
4+
"version": "0.5.0",
55
"description": "React specific wrapper for @poppy-ui/core",
66
"license": "MIT",
77
"main": "./dist/index.js",
@@ -22,7 +22,7 @@
2222
"copy:css": "node ./scripts/copy-css.js"
2323
},
2424
"dependencies": {
25-
"@poppy-ui/core": "0.4.0",
25+
"@poppy-ui/core": "0.5.0",
2626
"@stencil/react-output-target": "^0.8.2"
2727
},
2828
"devDependencies": {

packages/vue/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@poppy-ui/vue",
33
"type": "module",
4-
"version": "0.4.0",
4+
"version": "0.5.0",
55
"description": "Vue specific wrapper for @poppy-ui/core",
66
"author": "Sukaato <sukaato.dev@proton.me>",
77
"homepage": "https://github.com/CheeseGrinder/poppy-ui#readme",
@@ -48,7 +48,7 @@
4848
},
4949
"devDependencies": {
5050
"@biomejs/biome": "^1.9.4",
51-
"@poppy-ui/docs": "^0.4.0",
51+
"@poppy-ui/docs": "^0.5.0",
5252
"@rollup/plugin-typescript": "^12.1.2",
5353
"change-case": "^5.4.4",
5454
"rimraf": "^6.0.1",
@@ -65,6 +65,6 @@
6565
"css/*.css"
6666
],
6767
"dependencies": {
68-
"@poppy-ui/core": "^0.4.0"
68+
"@poppy-ui/core": "^0.5.0"
6969
}
7070
}

tests/react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "test-react",
33
"private": true,
4-
"version": "0.0.0",
4+
"version": "0.1.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

tests/vue/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "test-vue",
33
"private": true,
4-
"version": "0.4.0",
4+
"version": "0.5.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

0 commit comments

Comments
 (0)