-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from Reloadly/release/1.0.0
Release/1.0.0
- Loading branch information
Showing
93 changed files
with
2,875 additions
and
2,247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Build and Publish NPM Package | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
- main | ||
|
||
jobs: | ||
deploy-beta: | ||
runs-on: ubuntu-latest | ||
if: github.ref == 'refs/heads/develop' | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
registry-url: https://registry.npmjs.org/ | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Build | ||
run: npm ci && npm run build:prod | ||
|
||
- name: Publish to npm (beta version) | ||
run: npm run npm:publish:beta | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}} | ||
deploy-release: | ||
runs-on: ubuntu-latest | ||
if: github.ref == 'refs/heads/main' | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
registry-url: https://registry.npmjs.org/ | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Build | ||
run: npm ci && npm run build:prod | ||
|
||
- name: Publish to npm (release version) | ||
run: npm run npm:publish:latest | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,31 @@ | ||
<a name="1.0.0-alpha.0"></a> | ||
# [1.0.0-alpha.0](https://github.com/ng-bootstrap/ng-bootstrap/compare/9f8f37b...1.0.0-alpha.0) (2023-06-10) | ||
<a name="1.0.0"></a> | ||
# [1.0.0](https://github.com/reloadly-ui/reloadly-ui/compare/9f8f37b...1.0.0-alpha.0) (2023-09-26) | ||
|
||
### Features | ||
|
||
Initial release with the following directives: | ||
|
||
* accordion | ||
* badge | ||
* breadcrumbs | ||
* buttons | ||
* button | ||
* checkbox | ||
* dropdown-select | ||
* range-slider | ||
* search-bar | ||
* dropdown | ||
* form-group | ||
* input-group | ||
* menu | ||
* modal | ||
* pagination | ||
* preloader | ||
* quick-action | ||
* select | ||
* sidebar | ||
* svg | ||
* icons | ||
* switch | ||
* stepper | ||
* selection-grid | ||
* table | ||
* tag | ||
* tooltip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.