@tutkli/jikan-ts 0.6.6 → 0.6.61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tutkli/jikan-ts",
3
- "version": "0.6.6",
3
+ "version": "0.6.61",
4
4
  "description": "Node.js wrapper for the Jikan API with build-in typings.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",
@@ -1,33 +0,0 @@
1
- name: Deploy
2
- on:
3
- workflow_dispatch: {}
4
- push:
5
- branches:
6
- - main
7
- jobs:
8
- deploy:
9
- runs-on: ubuntu-latest
10
- permissions:
11
- pages: write
12
- id-token: write
13
- environment:
14
- name: github-pages
15
- url: ${{ steps.deployment.outputs.page_url }}
16
- steps:
17
- - uses: actions/checkout@v3
18
- with:
19
- fetch-depth: 0
20
- - uses: actions/setup-node@v3
21
- with:
22
- node-version: 16
23
- cache: yarn
24
- - run: yarn install --frozen-lockfile
25
- - name: Build
26
- run: npm run docs:build
27
- - uses: actions/configure-pages@v2
28
- - uses: actions/upload-pages-artifact@v1
29
- with:
30
- path: docs/.vitepress/dist
31
- - name: Deploy
32
- id: deployment
33
- uses: actions/deploy-pages@v1