Skip to content

Commit

Permalink
chore: redefine exports (#23)
Browse files Browse the repository at this point in the history
* feat(repo): adding npm skel files

* feat(class): core function

* feat(deps): update packages

* Update README.md

* feat(core): finished initial commit

* Update tslint.json

* Create npm-publish.yml

* Update npm-publish.yml

* Update package.json

* Update package.json

* Update package-lock.json

* Update npm-publish.yml

* Update README.md

* chore: remove test package

* Update package.json

* Update package.json

* feat(test): added jest test and test ci

* chore(deps): update package

* chore(core): refactored

* chore(test): fix error

* Update tsconfig.json

* Update tsconfig.json

* Update package.json

* Update tsconfig.json

* Update jest-test.yml

* Update jest-test.yml

* Update index.test.ts

* Update jest-test.yml

* Update jest-test.yml

* Update jest-test.yml

* Update jest-test.yml

* Update jest-test.yml

* Update jest-test.yml

* chore(workflows): updated ci

* Update jest-test.yml

* Update jest-test.yml

* chore(workflows): add coverage

* Update jest-test.yml

* Update jest-test.yml

* Update jest-test.yml

* Update jest-test.yml

* feat(workflow): separate coverage ci

* Update index.test.ts

* Create CODE_OF_CONDUCT.md

* Update package.json

* Update README.md

* Update index.ts

* Update npm-publish.yml

- fix typo

* Update package.json

- bump version

* fix: exclude dist file on test

* bump: v0.0.8

* bump: version 0.1.0

- rename to adasms-sdk

* fix: package.json

- update main and types

* fix: exports

- bump v0.1.2

* chore: update lock

* fix: tests

* chore: redefine exports

* bump: v0.1.3

* Update tsconfig.json

* bump: v0.1.4

* bump: v0.1.4
  • Loading branch information
neko1101 authored Nov 10, 2022
1 parent a71329b commit 47a623a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
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,7 +1,7 @@
{
"name": "adasms-sdk",
"homepage": "https://adasms.com/",
"version": "0.1.3",
"version": "0.1.4",
"type": "module",
"description": "Non-Official ADASMS Client SDK",
"main": "dist/index.js",
Expand Down
7 changes: 5 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"compilerOptions": {
"target": "ES2021",
"module": "CommonJS",
"lib": ["es2021", "es7", "es6", "dom"],
"lib": ["es2021", "dom"],
"isolatedModules": true,
"declaration": true,
"outDir": "dist",
"strict": true,
Expand All @@ -18,7 +19,9 @@
"preserveConstEnums": true,
"sourceMap": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
"forceConsistentCasingInFileNames": true,
"composite": true,
"resolveJsonModule": true
},
"exclude": [
"node_modules/**/*",
Expand Down

0 comments on commit 47a623a

Please sign in to comment.