Skip to content

Commit

Permalink
Bump SDK version (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospassos authored Dec 13, 2022
1 parent 669d75f commit 6e2eb2a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
8 changes: 4 additions & 4 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
Expand Up @@ -34,7 +34,7 @@
},
"dependencies": {
"@croct/json": "^1.1.0",
"@croct/sdk": "^0.11.0-alpha.4",
"@croct/sdk": "^0.11.0",
"tslib": "^2.2.0"
},
"devDependencies": {
Expand Down
5 changes: 5 additions & 0 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ import replace from '@rollup/plugin-replace';
import typescript from '@rollup/plugin-typescript';
import terser from '@rollup/plugin-terser';
import commonjs from '@rollup/plugin-commonjs';
import {fileURLToPath} from 'url';

// Temporary fix for: https://github.com/rollup/plugins/pull/1367
const __filename = fileURLToPath(import.meta.url);
global['__filename'] = __filename;

export default args => {
if (args['config-cdn-url'] === undefined) {
Expand Down

0 comments on commit 6e2eb2a

Please sign in to comment.