Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP - refactor: turn into dual node package with additional browser bundle #2299

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
6ccca6a
build: patch and minor updates
axe312ger May 31, 2024
18cc1ea
build: upgrade to new contentful-sdk-core ESM variant
axe312ger May 31, 2024
68e966b
Revert "build: upgrade to new contentful-sdk-core ESM variant"
axe312ger May 31, 2024
91ec3d1
Merge branch 'master' into refactor/modern-esm-support
axe312ger Jun 19, 2024
f4106db
build: readd new alpha of sdk-core
axe312ger Jun 20, 2024
802e5b6
Revert "build: readd new alpha of sdk-core"
axe312ger Jun 20, 2024
859c676
fix: revert update of babel-node to make tests pass
axe312ger Jun 20, 2024
60b59fc
Revert "Revert "build: readd new alpha of sdk-core""
axe312ger Jun 20, 2024
284762b
buidl: remove unused lodash.isplainobject
axe312ger Jun 26, 2024
e092e2c
build: add missing json-patch
axe312ger Jun 26, 2024
6efd640
build: remove no more needed lodash.isplainobject types
axe312ger Jun 26, 2024
14dc7db
build: remove no more used require-all
axe312ger Jun 26, 2024
7c399e3
build: remove no more used istanbul
axe312ger Jun 26, 2024
14021c8
Revert "Revert "Revert "build: readd new alpha of sdk-core"""
axe312ger Jun 26, 2024
b85a3a2
test: make it blend for now
axe312ger Jun 26, 2024
7d3716e
build: remove webpack-cli and json
axe312ger Jun 26, 2024
c32a445
Merge branch 'master' into refactor/modern-esm-support
axe312ger Jun 26, 2024
61c91a2
build: remove urls to local verdaccio
axe312ger Jun 26, 2024
0c0c8a2
build: readd webpack-cli as its still needed actually
axe312ger Jun 26, 2024
b9e3e3f
build: increase bundle sizes to accomodate new sizes due to dependenc…
axe312ger Jun 26, 2024
4c2d70c
build: upgrade typescript to v5
axe312ger Jun 26, 2024
dfc3f27
test: update eslint and apply some small things
axe312ger Jun 26, 2024
936c558
build: execute npm dedupe
axe312ger Jun 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ module.exports = {
},
],
'no-only-tests/no-only-tests': 'error',
'@typescript-eslint/no-explicit-any': 'warn',
},
},
],
Expand Down
2 changes: 1 addition & 1 deletion lib/create-organization-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,7 @@ export default function createOrganizationApi(makeRequest: MakeRequest) {
entityType: 'AppAction',
action: 'delete',
params: { organizationId: raw.sys.id, appDefinitionId, appActionId },
}).then((payload) => {
}).then(() => {
/* noop*/
})
},
Expand Down
1 change: 0 additions & 1 deletion lib/entities/app-action-call.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import {
BasicMetaSysProps,
CreateWithResponseParams,
DefaultElements,
GetAppActionCallDetailsParams,
MakeRequest,
SysLink,
} from '../common-types'
Expand Down
9 changes: 0 additions & 9 deletions lib/plain/common-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ import {
GetSnapshotForEntryParams,
GetSpaceEnvironmentParams,
GetSpaceParams,
GetTeamMembershipParams,
GetTeamParams,
GetTeamSpaceMembershipParams,
KeyValueMap,
QueryParams,
GetBulkActionParams,
Expand Down Expand Up @@ -50,12 +47,6 @@ import {
CreateUpdateScheduledActionProps,
} from '../entities/scheduled-action'
import { SnapshotProps } from '../entities/snapshot'
import { CreateTeamProps, TeamProps } from '../entities/team'
import { CreateTeamMembershipProps, TeamMembershipProps } from '../entities/team-membership'
import {
CreateTeamSpaceMembershipProps,
TeamSpaceMembershipProps,
} from '../entities/team-space-membership'
import { DefaultParams, OptionalDefaults } from './wrappers/wrap'
import { AssetKeyProps, CreateAssetKeyProps } from '../entities/asset-key'
import { FunctionProps } from '../entities/function'
Expand Down
Loading