Commit 523c941 1 parent ec57e85 commit 523c941 Copy full SHA for 523c941
File tree 9 files changed +54
-24
lines changed
datastore-storage-adapter
9 files changed +54
-24
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ packages/**/dist/
9
9
packages /** /es /
10
10
packages /** /esm /
11
11
packages /** /cjs /
12
- .DS_Store
12
+ ** / .DS_Store
13
13
.vscode
14
14
.idea
15
15
* .log
Original file line number Diff line number Diff line change
1
+ {
2
+ "ignore" : [
3
+ " NOTICE" ,
4
+ " .circleci" ,
5
+ " .github" ,
6
+ " **/*.config.dev.js" ,
7
+ " **/*.config.js" ,
8
+ " **/*.d.ts" ,
9
+ " **/*.html" ,
10
+ " **/*.jar" ,
11
+ " **/*.json" ,
12
+ " **/*.md" ,
13
+ " **/*.plist" ,
14
+ " **/*.podspec" ,
15
+ " **/*.properties" ,
16
+ " **/*.sh" ,
17
+ " **/*.snap" ,
18
+ " **/*.tsx" ,
19
+ " **/*.xml" ,
20
+ " **/*.yml" ,
21
+ " **/.*" ,
22
+ " **/amazon-cognito-identity-js" ,
23
+ " **/android" ,
24
+ " **/aws-amplify-react-native" ,
25
+ " **/coverage" ,
26
+ " **/coverage-ts" ,
27
+ " **/dist" ,
28
+ " **/docs" ,
29
+ " **/ios" ,
30
+ " **/lib" ,
31
+ " **/lib-esm" ,
32
+ " **/node_modules" ,
33
+ " **/pushnotification" ,
34
+ " **/vendor" ,
35
+ " **/__tests__" ,
36
+ " **/__mocks__"
37
+ ],
38
+ "ignoreFile" : " .gitignore" ,
39
+ "license" : " license_header.txt" ,
40
+ "licenseFormats" : {
41
+ "js|ts|kt|java" : {
42
+ "eachLine" : {
43
+ "prepend" : " // "
44
+ }
45
+ }
46
+ },
47
+ "trailingWhitespace" : " TRIM"
48
+ }
Original file line number Diff line number Diff line change
1
+ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ SPDX-License-Identifier: Apache-2.0
Original file line number Diff line number Diff line change 10
10
"test" : " lerna run test --stream" ,
11
11
"test:size" : " lerna run test:size --no-bail" ,
12
12
"test:duplicates" : " ./scripts/duplicates-yarn.sh" ,
13
+ "test:license" : " license-check-and-add check -f license_config.json" ,
13
14
"cypress" : " lerna run cypress" ,
14
15
"cypress:open" : " lerna run cypress:open" ,
15
16
"coverage" : " codecov || exit 0" ,
23
24
"clean:size" : " lerna run clean:size --parallel" ,
24
25
"format" : " lerna run format" ,
25
26
"lint" : " lerna run lint" ,
27
+ "lint:license" : " license-check-and-add add -f license_config.json" ,
26
28
"link-all" : " yarn unlink-all && lerna exec --no-bail --parallel yarn link" ,
27
29
"unlink-all" : " lerna exec --no-bail --parallel -- yarn unlink; exit 0" ,
28
30
"publish:main" : " lerna publish --canary --force-publish \" *\" --yes --dist-tag=unstable --preid=unstable${PREID_HASH_SUFFIX} --exact --no-verify-access" ,
80
82
"jest-config" : " 24.8.0" ,
81
83
"json-loader" : " ^0.5.7" ,
82
84
"lerna" : " ^6.6.1" ,
85
+ "license-check-and-add" : " ^4.0.5" ,
83
86
"prettier" : " ^2.4.1" ,
84
87
"pretty-quick" : " ^1.11.1" ,
85
88
"rimraf" : " ^2.6.2" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 52
52
"@react-native-async-storage/async-storage" : " 1.15.17" ,
53
53
"find" : " ^0.2.7" ,
54
54
"genversion" : " ^2.2.0" ,
55
- "prepend-file" : " ^1.3.1" ,
56
55
"react-native" : " ^0.64.1" ,
57
56
"typescript" : " 5.0.2"
58
57
},
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ node_modules/**
6
6
.vscode /**
7
7
.DS_Store
8
8
* .log
9
- prepend-license.js
10
9
prettier.config.json
11
10
tsconfig.json
12
11
tsfmt.json
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ node_modules/**
6
6
.vscode /**
7
7
.DS_Store
8
8
* .log
9
- prepend-license.js
10
9
prettier.config.json
11
10
tsconfig.json
12
11
tsfmt.json
Original file line number Diff line number Diff line change 40
40
"compression-webpack-plugin" : " ^1.1.3" ,
41
41
"find" : " ^0.2.7" ,
42
42
"json-loader" : " ^0.5.7" ,
43
- "prepend-file" : " ^1.3.1" ,
44
43
"rimraf" : " ^2.6.2" ,
45
44
"source-map-loader" : " ^0.2.1" ,
46
45
"uglifyjs-webpack-plugin" : " ^0.4.6" ,
You can’t perform that action at this time.
0 commit comments