Skip to content

Commit

Permalink
Revert module type and decimal.js requirement (#17)
Browse files Browse the repository at this point in the history
- update version "0.1.2" to "0.1.3"
- revert module type "es6" to "commonjs"
- revert decimal.js version requirement "~10.3.1" to "^10.3.1"
- add .DS_store to .gitignore
  • Loading branch information
yugure-orca authored Nov 23, 2022
1 parent fb47edb commit 34670dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jspm_packages/
.npmrc
.vscode/
dist/

.DS_store
4 changes: 2 additions & 2 deletions packages/common-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@orca-so/common-sdk",
"version": "0.1.2",
"version": "0.1.3",
"description": "Common Typescript components across Orca",
"repository": "https://github.com/orca-so/orca-sdks",
"author": "Orca Foundation",
Expand All @@ -10,7 +10,7 @@
"dependencies": {
"@project-serum/anchor": "~0.25.0",
"@solana/spl-token": "0.1.8",
"decimal.js": "~10.3.1",
"decimal.js": "^10.3.1",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/common-sdk/tsconfig-base.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "es6",
"module": "ES6",
"module": "commonjs",
"allowJs": false,
"declaration": true,
"lib": ["DOM", "ES6", "DOM.Iterable", "ScriptHost", "ES2016.Array.Include"],
Expand Down

0 comments on commit 34670dd

Please sign in to comment.