Skip to content

Commit

Permalink
Merge pull request #171 from thivi/master
Browse files Browse the repository at this point in the history
Remove polyfills and browserification
  • Loading branch information
thivi authored Dec 17, 2021
2 parents 913d215 + eda58c3 commit 0b0fa4a
Show file tree
Hide file tree
Showing 19 changed files with 7,625 additions and 13,033 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:
- master
paths-ignore:
- '**/package.json'
- '**/package-lock.json'
- '**/yarn.lock'
- 'lerna.json'

jobs:
Expand All @@ -46,5 +46,5 @@ jobs:

- name: Build
run: |
npm ci
npm run build --if-present
yarn install --frozen-lockfile
yarn build
4 changes: 2 additions & 2 deletions .github/workflows/pr-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ jobs:

- name: Build
run: |
npm ci
npm run build --if-present
yarn install --frozen-lockfile
yarn build
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,14 @@ jobs:

- name: Build
run: |
yarn install --frozen-lockfile
yarn build
- name: Bump Version
run: |
git config --global user.email "[email protected]"
git config --global user.name "asgardeo-github-bot"
npm run bump-${{ github.event.inputs.Type }}-version
yarn run bump-${{ github.event.inputs.Type }}-version
git push --follow-tags
- name: Pack Release Artifacts
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ const config: AuthClientConfig<Bar> ={
| `signInRequired` | Required | `boolean` | `false` | Specifies if the user should be sign-in or not to dispatch this custom-grant request. |
| `attachToken` | Required | `boolean` | `false` | Specifies if the access token should be attached to the header of the request. |
| `returnsSession` | Required | `boolean` | `false` | Specifies if the the request returns session information such as the access token. |
| `tokenEndpoint` | Optional | `string` | `null` | Token endpoint is an optional parameter which can be used to provide an optional token endpoint that will be used instead of default token endpoint. |
| `tokenEndpoint` | Optional | `string` | `null` | Token endpoint is an optional parameter which can be used to provide an optional token endpoint that will be used instead of default token endpoint. |

#### Custom Grant Template Tags

Expand Down Expand Up @@ -1091,7 +1091,7 @@ In addition to the above attributes, this object will also contain any other cla
The repository is a mono repository. The SDK repository is found in the [lib](https://github.com/asgardeo/asgardeo-auth-js-sdk/tree/master/lib) directory. You can install the dependencies by running the following command at the root.

```
npm run build
yarn build
```

## Contribute
Expand Down
6 changes: 2 additions & 4 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
"message": "[Asgardeo Release] [GitHub Actions] [Release %s] Bump version"
}
},
"packages": [
"lib",
"samples/*"
],
"packages": ["lib", "samples/*"],
"npmClient": "yarn",
"version": "0.2.20"
}
43 changes: 0 additions & 43 deletions lib/babel.config.js

This file was deleted.

Loading

0 comments on commit 0b0fa4a

Please sign in to comment.