Skip to content

Commit 49fb5a0

Browse files
authored
Merge branch 'master' into readme
2 parents bfe7b6c + ee90e2f commit 49fb5a0

File tree

13 files changed

+146
-9391
lines changed

13 files changed

+146
-9391
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ plugin/**/*js.map
3131
plugin/**/*js
3232
plugin/**/*.d.ts
3333
*.aar
34+
pnpm-lock.yaml

.prettierrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"printWidth": 130,
33
"semi": true,
44
"tabWidth": 4,
5-
"singleQuote": true
5+
"singleQuote": true,
6+
"trailingComma": "none"
67
}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.3.12](https://github.com/TestJG/nativescript-mtmobile-sqlite/compare/v3.3.11...v3.3.12) (2021-05-04)
7+
8+
9+
### Features
10+
11+
* Correctly transform ArrayBuffer to write in DB ([1fab926](https://github.com/TestJG/nativescript-mtmobile-sqlite/commit/1fab926081c5e086bb602d9036a82adc26c9156c))
12+
13+
14+
15+
16+
617
## [3.3.11](https://github.com/TestJG/nativescript-mtmobile-sqlite/compare/v3.3.10...v3.3.11) (2020-11-26)
718

819

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"plugin"
44
],
5-
"version": "3.3.11",
5+
"version": "3.3.12",
66
"command": {
77
"publish": {
88
"conventionalCommits": true

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"clean.demo": "rimraf demo/hooks demo/node_modules demo/platforms",
2121
"clean": "rimraf plugin/ios plugin/android plugin/**/*.d.ts plugin/**/*.js plugin/**/*.js.map plugin/node_modules plugin/package-lock.json",
2222
"plugin.watch": "pnpm run tsc -- -w",
23-
"publish": "npm run setup && npm run build && lerna publish --create-release=github",
23+
"publish": "npm run setup && npm run build && lerna publish --create-release=github --force-publish",
2424
"test.android": "pnpm run build && cd ./demo && tns build android && tns test android --justlaunch",
2525
"test.ios": "pnpm run build && cd ./demo && tns build ios && tns test ios --justlaunch",
2626
"test.android.verbose": "pnpm run build && cd ./demo && tns build android && tns test android",
@@ -48,16 +48,19 @@
4848
"@commitlint/cli": "^9.1.2",
4949
"@commitlint/config-conventional": "^9.1.2",
5050
"@nano-sql/core": "^2.3.7",
51+
"@nativescript-community/typeorm": "0.2.28",
5152
"@nativescript/core": "7.0.0",
5253
"@nativescript/types-android": "7.0.2",
5354
"@nativescript/types-ios": "7.0.1",
5455
"@nativescript/webpack": "~3.0.1",
55-
"@nativescript-community/typeorm": "0.2.28",
5656
"@typescript-eslint/eslint-plugin": "4.0.1",
5757
"@typescript-eslint/parser": "4.0.1",
5858
"eslint": "7.8.1",
59+
"eslint-config-prettier": "^8.1.0",
60+
"eslint-plugin-prettier": "^3.3.1",
5961
"husky": "^4.2.5",
6062
"lerna": "^3.22.1",
63+
"prettier": "^2.2.1",
6164
"prompt": "^1.0.0",
6265
"rimraf": "^3.0.2",
6366
"semver": "^7.3.2",

plugin/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.3.12](https://github.com/TestJG/nativescript-akylas-sqlite/compare/v3.3.11...v3.3.12) (2021-05-04)
7+
8+
**Note:** Version bump only for package @akylas/nativescript-sqlite
9+
10+
11+
12+
13+
614
## [3.3.11](https://github.com/TestJG/nativescript-akylas-sqlite/compare/v3.3.10...v3.3.11) (2020-11-26)
715

816
**Note:** Version bump only for package @akylas/nativescript-sqlite

plugin/package.json

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,16 @@
11
{
22
"name": "@akylas/nativescript-sqlite",
3-
"version": "3.3.11",
3+
"version": "3.3.12",
44
"description": "SQLite for Nativescript",
55
"main": "sqlite",
66
"typings": "sqlite.d.ts",
77
"sideEffects": false,
8-
"scripts": {
9-
"preuninstall": "node preuninstall.js",
10-
"postinstall": "node postinstall.js"
11-
},
8+
"scripts": {},
129
"nativescript": {
1310
"platforms": {
1411
"android": "6.2.0",
1512
"ios": "6.2.0"
16-
},
17-
"hooks": [
18-
{
19-
"type": "before-prepare",
20-
"script": "scripts/before-prepare.js",
21-
"inject": true
22-
}
23-
]
13+
}
2414
},
2515
"keywords": [
2616
"NativeScript",
@@ -39,9 +29,11 @@
3929
"homepage": "https://github.com/nativescript-community/sqlite",
4030
"readmeFilename": "README.md",
4131
"repository": "nativescript-community/sqlite",
42-
"dependencies": {
32+
"peerDependencies": {
4333
"@nano-sql/core": "^2.3.7",
44-
"@nativescript-community/typeorm": "*",
34+
"@nativescript-community/typeorm": "0.2.28-1"
35+
},
36+
"dependencies": {
4537
"@nativescript/hook": "~2.0.0"
4638
}
4739
}

0 commit comments

Comments
 (0)