Skip to content

Commit 019d196

Browse files
authored
Merge branch 'main' into fix-gradient-unique-ids
2 parents ed288c2 + 46aa014 commit 019d196

File tree

5 files changed

+17
-2
lines changed

5 files changed

+17
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
<img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=b9bf5f33-2c37-42c7-ab18-9de06e6937a7" />
2+
13
![React QR Code Header](https://github.com/LGLabGreg/react-qr-code/raw/main/media/repo-header.png)
24

35
# @lglab/react-qr-code

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"watch:apps": "pnpm --filter \"./apps/**\" run dev",
1414
"build:lib": "pnpm --filter \"./packages/**\" run build",
1515
"build:app": "pnpm --filter \"./apps/**\" run build",
16-
"ci:publish": "pnpm publish -r && pnpm changeset tag",
16+
"ci:publish": "pnpm build:lib && pnpm publish -r && pnpm changeset tag",
1717
"test": "vitest run",
1818
"test:watch": "vitest",
1919
"test:coverage": "vitest run --coverage",

packages/react-qr-code/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @lglab/react-qr-code
22

3+
## 1.4.0
4+
5+
### Minor Changes
6+
7+
- [#58](https://github.com/LGLabGreg/react-qr-code/pull/58) [`ebc64e1`](https://github.com/LGLabGreg/react-qr-code/commit/ebc64e1cfa2f1746c76e91e22637aab81e3837c7) Thanks [@LGLabGreg](https://github.com/LGLabGreg)! - support random size for pinched-square
8+
9+
## 1.3.4
10+
11+
### Patch Changes
12+
13+
- [#56](https://github.com/LGLabGreg/react-qr-code/pull/56) [`d387fa7`](https://github.com/LGLabGreg/react-qr-code/commit/d387fa75f32a7d15057ffc73fc47ced273cb046b) Thanks [@LGLabGreg](https://github.com/LGLabGreg)! - fix publish
14+
315
## 1.3.3
416

517
### Patch Changes

packages/react-qr-code/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lglab/react-qr-code",
3-
"version": "1.3.3",
3+
"version": "1.4.0",
44
"description": "React library to generate QR codes",
55
"author": "LGLab",
66
"license": "MIT",

packages/react-qr-code/src/utils/data-modules.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { DataModulesNeighbours } from '../types/utils'
33

44
export const dataModuleCanBeRandomSize = (style: DataModulesStyle): boolean =>
55
style === 'square' ||
6+
style === 'pinched-square' ||
67
style === 'circle' ||
78
style === 'star' ||
89
style === 'heart' ||

0 commit comments

Comments
 (0)