Skip to content

files moved to ES Modules #1219

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
echo RUNNING GENERATE 2,
npm run generate
ls
cat dist/api.json
cat src/api.json
- uses: adasq/[email protected]
env:
TOKEN: ${{ secrets.TOKEN }}
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
push:
branches:
- master
paths:
- 'dist/*.json'

jobs:
build:
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ example/credentials.json
.DS_Store
examples.out
config.json
.idea/
.idea/
dist/
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
config.json
example
example
test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

The API is generated programmatically, based on [endpoints description JSON][api.json] fetched from [official docs][docs].

[api.json]: <https://github.com/adasq/dropbox-v2-api/blob/master/dist/api.json>
[api.json]: <https://github.com/adasq/dropbox-v2-api/blob/master/src/api.json>
## Why this package?

- Always **up-to-date API** (PRs with changes are generated automatically, [see most recent][change-detection-pr])
Expand Down
Loading