Skip to content

Commit

Permalink
Merge branch 'main' into manoj-update-detox-version
Browse files Browse the repository at this point in the history
  • Loading branch information
Samaritan1011001 committed May 10, 2024
2 parents e9f15b1 + 57a77b5 commit 9bbefc9
Show file tree
Hide file tree
Showing 19 changed files with 76 additions and 220 deletions.
2 changes: 0 additions & 2 deletions package.json
Expand Up @@ -118,8 +118,6 @@
"terser-webpack-plugin": "^5.3.6",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.3",
"tslint": "^5.7.0",
"tslint-config-airbnb": "^5.8.0",
"typedoc": "0.25.8",
"typedoc-plugin-extras": "^3.0.0",
"typedoc-plugin-missing-exports": "^2.2.0",
Expand Down
1 change: 0 additions & 1 deletion packages/api-graphql/__tests__/fixtures/with-types/API.ts
@@ -1,4 +1,3 @@
/* tslint:disable */
/* eslint-disable */
// This file was automatically generated and should not be edited.

Expand Down
@@ -1,4 +1,3 @@
/* tslint:disable */
/* eslint-disable */
// this is an auto generated file. This will be overwritten

Expand Down
@@ -1,4 +1,3 @@
/* tslint:disable */
/* eslint-disable */
// this is an auto generated file. This will be overwritten

Expand Down
@@ -1,4 +1,3 @@
/* tslint:disable */
/* eslint-disable */
// this is an auto generated file. This will be overwritten

Expand Down
@@ -1,4 +1,3 @@
/* tslint:disable */
/* eslint-disable */
// This file was automatically generated and should not be edited.

Expand Down
@@ -1,4 +1,3 @@
/* tslint:disable */
/* eslint-disable */
// this is an auto generated file. This will be overwritten

Expand Down
@@ -1,4 +1,3 @@
/* tslint:disable */
/* eslint-disable */
// this is an auto generated file. This will be overwritten

Expand Down
@@ -1,4 +1,3 @@
/* tslint:disable */
/* eslint-disable */
// this is an auto generated file. This will be overwritten

Expand Down
2 changes: 1 addition & 1 deletion packages/api-graphql/package.json
Expand Up @@ -15,7 +15,7 @@
},
"scripts": {
"test": "npm run lint && jest -w 1 --coverage --logHeapUsage",
"test:watch": "tslint 'src/**/*.ts' && jest -w 1 --watch",
"test:watch": "jest -w 1 --watch",
"build-with-test": "npm test && npm build",
"build:umd": "webpack && webpack --config ./webpack.config.dev.js",
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/api-rest/package.json
Expand Up @@ -12,7 +12,7 @@
},
"scripts": {
"test": "npm run lint && jest -w 1 --coverage --logHeapUsage",
"test:watch": "tslint 'src/**/*.ts' && jest -w 1 --watch",
"test:watch": "jest -w 1 --watch",
"build-with-test": "npm test && npm build",
"build:umd": "webpack && webpack --config ./webpack.config.dev.js",
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs",
Expand Down
3 changes: 1 addition & 2 deletions packages/datastore-storage-adapter/.npmignore
Expand Up @@ -8,6 +8,5 @@ node_modules/**
*.log
tsconfig.json
tsfmt.json
tslint.json
typeDoc.js
webpack.config.js
webpack.config.js
3 changes: 1 addition & 2 deletions packages/datastore/.npmignore
Expand Up @@ -8,6 +8,5 @@ node_modules/**
*.log
tsconfig.json
tsfmt.json
tslint.json
typeDoc.js
webpack.config.js
webpack.config.js
2 changes: 0 additions & 2 deletions packages/datastore/__tests__/DataStore/sanityCheck.test.ts
Expand Up @@ -196,7 +196,6 @@ describe('DataStore sanity testing checks', () => {
await DataStore.start();
});

// tslint:disable-next-line: max-line-length
test(`starting after unawaited clear results in a DX-friendly error (${connectedState}, ${environment})`, async () => {
({ DataStore, Post } = getDataStore({ online, isNode }));
await DataStore.start();
Expand All @@ -210,7 +209,6 @@ describe('DataStore sanity testing checks', () => {
await clearing;
});

// tslint:disable-next-line: max-line-length
test(`starting after unawaited stop results in a DX-friendly error (${connectedState}, ${environment})`, async () => {
({ DataStore, Post } = getDataStore({ online, isNode }));
await DataStore.start();
Expand Down
2 changes: 1 addition & 1 deletion packages/notifications/package.json
Expand Up @@ -12,7 +12,7 @@
},
"scripts": {
"test": "npm run lint && jest -w 1 --coverage --logHeapUsage",
"test:watch": "tslint 'src/**/*.ts' && jest -w 1 --watch",
"test:watch": "jest -w 1 --watch",
"build-with-test": "npm run clean && npm run build",
"build:umd": "webpack && webpack --config ./webpack.config.dev.js",
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs",
Expand Down
Expand Up @@ -291,7 +291,6 @@ mockGetUrl.mockImplementation(({ key, options }) => {
);
} else {
const identityId = options?.targetIdentityId || 'identityId';
// tslint:disable-next-line: max-line-length
url = new URL(
`https://bucket-name.s3.us-west-2.amazonaws.com/${level}/${identityId}/key.png?X-Amz-Algorithm=AWS4-HMAC-SHA256`,
);
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/package.json
Expand Up @@ -11,7 +11,7 @@
"access": "public"
},
"scripts": {
"test": "tslint 'src/**/*.ts'",
"test": "echo 'no-op'",
"test:android": "./android/gradlew test -p ./android",
"build-with-test": "npm run clean && npm test && tsc",
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/rtn-web-browser/package.json
Expand Up @@ -11,7 +11,7 @@
"access": "public"
},
"scripts": {
"test": "tslint 'src/**/*.ts'",
"test": "echo 'no-op'",
"test:android": "./android/gradlew test -p ./android",
"build-with-test": "npm run clean && npm test && tsc",
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs",
Expand Down

0 comments on commit 9bbefc9

Please sign in to comment.