Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ src/js/*
!src/js/__tests__
types
js
.claude/worktrees
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module.exports = function (api) {
const runtime = [
"@babel/plugin-transform-runtime",
{
absoluteRuntime: true,
absoluteRuntime: false,
Comment thread
coderabbitai[bot] marked this conversation as resolved.
regenerator: false,
useESModules: false, // don't output es-modules by default
corejs: false,
Expand Down
2 changes: 2 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
module.exports = {
clearMocks: true,
coverageDirectory: "coverage",
modulePathIgnorePatterns: ["<rootDir>/.claude/"],
testEnvironment: "node",
testPathIgnorePatterns: ["<rootDir>/.claude/"],
testRegex: "/__tests__/.*\\.(test|spec)\\.[t|j]sx?$",
transform: {
"^.+\\.[t|j]sx?$": ["ts-jest"],
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@absmartly/javascript-sdk",
"version": "1.14.0-beta.0",
"version": "1.14.0-beta.1",
"description": "A/B Smartly Javascript SDK",
"homepage": "https://github.com/absmartly/javascript-sdk#README.md",
"bugs": "https://github.com/absmartly/javascript-sdk/issues",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const SDK_VERSION = "1.14.0-beta.0";
export const SDK_VERSION = "1.14.0-beta.1";
Loading