Skip to content
Closed
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
1 change: 1 addition & 0 deletions sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"scripts": {
"lint": "eslint './**/*.{ts,tsx}' --quiet",
"build": "yarn clean && tsc -p tsconfig.json && tsc -p tsconfig.browser.json && node scripts/postbuild.js",
"build:node": "yarn clean && tsc -p tsconfig.json",
"clean": "rm -rf lib",
"test": "mocha -r ts-node/register tests/**/*.ts",
"test:inspect": "mocha --inspect-brk -r ts-node/register tests/**/*.ts",
Expand Down
2 changes: 1 addition & 1 deletion sdk/scripts/postbuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ environments.forEach((environment) => {
fs.writeFileSync(isomorphPath, content);
} catch (error) {
console.error(
`Error processing isomophic package : ${package} :: ${error.message}`
`Error processing isomorphic package : ${package} :: ${error.message}`
);
}

Expand Down
Loading