Skip to content

DX-1443 build changes | Development #74

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

Merged
merged 6 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .talismanrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
fileignoreconfig:
- filename: package-lock.json
checksum: f2a832173c4b84d2105f29c5f83adc9ffbdb017ec869f820251f7496b8ef7f9d
checksum: 75e20fbd11b7dea6e9441b56f2d5f49d96a62fd5eacb6e78d055eeee3c8ab835
- filename: test/unit/image-transform.spec.ts
checksum: 7beabdd07bd35d620668fcd97e1a303b9cbc40170bf3008a376d75ce0895de2a
- filename: test/utils/mocks.ts
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### Version: 4.4.1
#### Date: November-08-2024
Fix: Build via tsup lib
Fix: removed node-localstorage

### Version: 4.4.0
#### Date: October-21-2024
Fix: getData to receive params and headers both in data
Expand Down
2 changes: 2 additions & 0 deletions config/tsconfig.cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
"compilerOptions": {
"outDir": "../dist/cjs",
"declaration": true,
"module": "CommonJS",
"moduleResolution": "node"
},
"include": ["../src/**/*.ts"],
"exclude": ["node_modules", "../dist/cjs"]
Expand Down
1 change: 1 addition & 0 deletions config/tsconfig.esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"module": "ESNext",
"declaration": true,
"declarationDir": "../dist/esm/types",
"moduleResolution": "Node"
},
"include": ["../src/**/*.ts"], // Adjust this path based on your project structure
"exclude": ["node_modules", "../dist/esm"]
Expand Down
1 change: 1 addition & 0 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* eslint-disable */
export default {
testEnvironment: 'jsdom',
displayName: 'contentstack-delivery',
preset: './jest.preset.js',
transform: {
Expand Down
2 changes: 1 addition & 1 deletion jest.preset.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import nxPreset from '@nrwl/jest/preset/index.js';

export default { ...nxPreset };
export default { ...nxPreset };
Loading
Loading