Skip to content

Commit

Permalink
release: v1.36.0
Browse files Browse the repository at this point in the history
  • Loading branch information
surunzi committed May 18, 2022
1 parent 2f43152 commit 11ad55b
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 1 deletion.
35 changes: 35 additions & 0 deletions .github/workflows/publish.yml
@@ -0,0 +1,35 @@
name: Publish to NPM

on:
workflow_dispatch:
release:
types: [created]

jobs:
publish:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- name: Build licia
run: npm link && npm run build
- name: Publish package on NPM
working-directory: .licia/packages
run: |
cd licia
npm publish
cd ../licia-es
npm publish
cd ../eusita-module
npm publish
cd ../miniprogram-licia
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,9 @@
## v1.36.0 (18 May 2022)

* feat: add fileUrl
* fix(trigger): typescript definition
* fix(ajax): Add query parameters if they are necessary [#27](https://github.com/liriliri/licia/issues/27)

## v1.35.1 (18 Apr 2022)

* fix(container): cpuLoad return NaN
Expand Down
2 changes: 2 additions & 0 deletions index.json
Expand Up @@ -1655,6 +1655,7 @@
"env": [
"node"
],
"since": "1.35.0",
"test": []
},
"convertBase": {
Expand Down Expand Up @@ -2525,6 +2526,7 @@
"browser",
"miniprogram"
],
"since": "1.36.0",
"test": [
"node",
"browser"
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "licia",
"version": "1.35.1",
"version": "1.36.0",
"description": "Useful utility collection with zero dependencies",
"bin": {
"licia": "./bin/licia.js"
Expand Down
1 change: 1 addition & 0 deletions src/container.js
Expand Up @@ -8,6 +8,7 @@
/* module
* env: node
* test: manual
* since: 1.35.0
*/

/* typescript
Expand Down
1 change: 1 addition & 0 deletions src/fileUrl.js
Expand Up @@ -12,6 +12,7 @@

/* module
* env: all
* since: 1.36.0
*/

/* typescript
Expand Down

0 comments on commit 11ad55b

Please sign in to comment.