@aws-amplify/datastore-storage-adapter 2.1.75-Lerna-v8-testing.5bbeffa.0 → 2.1.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/package.json +47 -47
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.1.75](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore-storage-adapter@2.1.74...@aws-amplify/datastore-storage-adapter@2.1.75) (2025-03-07)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-amplify/datastore-storage-adapter
|
|
9
|
+
|
|
6
10
|
## [2.1.74](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore-storage-adapter@2.1.73...@aws-amplify/datastore-storage-adapter@2.1.74) (2025-03-05)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @aws-amplify/datastore-storage-adapter
|
package/package.json
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
2
|
+
"name": "@aws-amplify/datastore-storage-adapter",
|
|
3
|
+
"version": "2.1.75",
|
|
4
|
+
"description": "SQLite storage adapter for Amplify DataStore ",
|
|
5
|
+
"main": "./dist/cjs/index.js",
|
|
6
|
+
"module": "./dist/esm/index.mjs",
|
|
7
|
+
"typings": "./dist/esm/index.d.ts",
|
|
8
|
+
"react-native": "./src/index.ts",
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"test": "npm run lint && jest -w 1 --coverage --logHeapUsage",
|
|
14
|
+
"build-with-test": "npm test && npm run build",
|
|
15
|
+
"build:umd": "webpack && webpack --config ./webpack.config.dev.js",
|
|
16
|
+
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs",
|
|
17
|
+
"build:watch": "npm run build:esm-cjs -- --watch",
|
|
18
|
+
"build": "npm run clean && npm run build:esm-cjs && npm run build:umd",
|
|
19
|
+
"clean": "rimraf dist lib lib-esm",
|
|
20
|
+
"format": "echo \"Not implemented\"",
|
|
21
|
+
"lint": "eslint '**/*.{ts,tsx}' && npm run ts-coverage",
|
|
22
|
+
"lint:fix": "eslint '**/*.{ts,tsx}' --fix",
|
|
23
|
+
"ts-coverage": "typescript-coverage-report -p ./tsconfig.build.json -t 94.16"
|
|
24
|
+
},
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/aws-amplify/amplify-js.git"
|
|
28
|
+
},
|
|
29
|
+
"author": "Amazon Web Services",
|
|
30
|
+
"license": "Apache-2.0",
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/aws/aws-amplify/issues"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://aws-amplify.github.io/",
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"@aws-amplify/core": "^6.1.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@aws-amplify/core": "6.10.4",
|
|
40
|
+
"@aws-amplify/datastore": "5.0.75",
|
|
41
|
+
"@types/react-native-sqlite-storage": "5.0.1",
|
|
42
|
+
"expo-file-system": "13.1.4",
|
|
43
|
+
"expo-sqlite": "10.1.0",
|
|
44
|
+
"react-native-sqlite-storage": "5.0.0",
|
|
45
|
+
"sqlite3": "^5.0.2",
|
|
46
|
+
"typescript": "5.0.2"
|
|
47
|
+
},
|
|
48
|
+
"gitHead": "2c3bac425f172b9b7ede3a3f68b1b680c3c0a678"
|
|
49
49
|
}
|