Skip to content

Commit 7291c16

Browse files
authored
cd/v1.2.9 (#257)
* fix: cd scripts error * chore: revert changelog * chore: release 1.2.9 * chore: upgrade typedoc
1 parent 047b528 commit 7291c16

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-node@v2
1313
with:
14-
node-version: 14
14+
node-version: 20
1515
registry-url: https://registry.npmjs.org/
1616
- run: npm install
1717
- run: npm run prepack

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [1.2.7](///compare/v1.1.8...v1.2.7) (2025-11-20)
3+
## [1.2.9](///compare/v1.1.8...v1.2.9) (2025-11-20)
44

55
### Features
66

@@ -11,6 +11,7 @@
1111
* fix [#158](undefined/undefined/undefined/issues/158) android release bug style not working ([#160](undefined/undefined/undefined/issues/160)) a942e30
1212
* fontName bug (android) ([#196](undefined/undefined/undefined/issues/196)) 83d9856
1313
* add custom fonts to example ([#197](undefined/undefined/undefined/issues/197)) 6e2ad75
14+
* cd scripts error f01c061
1415
* coil load image with original size ([#217](undefined/undefined/undefined/issues/217)) d6e8744
1516
* fix [#164](undefined/undefined/undefined/issues/164) Build Failure on CI Due to CocoaPods 1.1.9 in iOS Project ([#165](undefined/undefined/undefined/issues/165)) 532e8a4
1617
* fix [#179](undefined/undefined/undefined/issues/179) Same watermark image is behaving differently on ANDROID and iOS ([#180](undefined/undefined/undefined/issues/180)) 10d71e1

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-image-marker",
3-
"version": "1.2.7",
3+
"version": "1.2.9",
44
"description": "Add text or icon watermark to your images",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",
@@ -83,12 +83,12 @@
8383
"prettier": "^2.0.5",
8484
"react": "18.2.0",
8585
"react-native": "0.73.3",
86-
"react-native-builder-bob": "^0.20.0",
86+
"react-native-builder-bob": "^0.40.15",
8787
"release-it": "^19.0.6",
88-
"typedoc": "^0.24.8",
88+
"typedoc": "^0.28.14",
8989
"typedoc-plugin-localization": "^3.0.1",
9090
"typedoc-plugin-rename-defaults": "^0.6.5",
91-
"typescript": "^4.5.2"
91+
"typescript": "^5.9.3"
9292
},
9393
"resolutions": {
9494
"@types/react": "17.0.21"

tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22
{
33
"extends": "./tsconfig",
4-
"exclude": ["example", "expo-example"]
4+
"exclude": ["example", "expo-example", "**/__tests__/**", "**/*.test.ts", "**/*.test.tsx"]
55
}

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44
"paths": {
55
"react-native-image-marker": ["./src/index"]
66
},
7+
"types": [],
78
"allowUnreachableCode": false,
89
"allowUnusedLabels": false,
910
"esModuleInterop": true,
1011
"ignoreDeprecations": "5.0",
11-
"importsNotUsedAsValues": "error",
12+
"verbatimModuleSyntax": true,
1213
"forceConsistentCasingInFileNames": true,
1314
"jsx": "react",
1415
"lib": ["esnext"],

0 commit comments

Comments
 (0)