Skip to content

Commit

Permalink
v1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Shirtiny committed Aug 2, 2021
1 parent 1023cc0 commit 2aeb2a4
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 9 deletions.
34 changes: 26 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ts-lib-template

> A starter template for typescript library.
> A starter template for typescript library.
```shell
# init project
Expand Down Expand Up @@ -37,21 +37,39 @@ This is a template for typescript library base on esbuild. This template include

- Jest

- Sass/scss & Autoprefixer
- Sass/scss & Autoprefixer

- Github action




## Usage

Create your repository by clicking 'Use this template' top of the page.

## Acknowledgment
## Config

```js
// .sh.js
module.exports = {
// your lib global name
globalName: "tsLibTemplate",
// devServer option
devServer: {
host: "localhost",
port: 2021,
proxy: {
"^/api": {
target: "http://192.168.6.111:9780",
pathRewrite: { "^/api": "" },
},
},
},
};
```

[raulanatol / template-ts-package](https://github.com/raulanatol/template-ts-package)
## Acknowledgment

[raulanatol / template-ts-package](https://github.com/raulanatol/template-ts-package)

## License
The MIT License (MIT)

The MIT License (MIT)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-lib-template",
"version": "1.3.3",
"version": "1.3.4",
"description": "ts-lib-template desc",
"types": "./dist/types/main.d.ts",
"main": "./dist/main.es.js",
Expand Down

0 comments on commit 2aeb2a4

Please sign in to comment.