Skip to content

Commit

Permalink
chore: linting (#25)
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

* fix: fix import issue

- remove type
- bump version

* chore: linting

- update tsconfig
- bump v0.1.6
- update format script
  • Loading branch information
neko1101 authored Nov 10, 2022
1 parent 9c9463d commit d9dae77
Show file tree
Hide file tree
Showing 7 changed files with 206 additions and 239 deletions.
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"printWidth": 120,
"trailingComma": "all",
"singleQuote": true
"singleQuote": true,
"tabWidth": 4
}
4 changes: 2 additions & 2 deletions 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.5",
"version": "0.1.6",
"description": "Non-Official ADASMS Client SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -14,7 +14,7 @@
},
"scripts": {
"test": "jest",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"build": "tsc"
},
Expand Down
10 changes: 5 additions & 5 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Client from "./main"
export * from "./main"
export * from "./types"
export * as types from "./types"
export default Client
import Client from './main';
export * from './main';
export * from './types';
export * as types from './types';
export default Client;
Loading

0 comments on commit d9dae77

Please sign in to comment.