Skip to content
Merged
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
47 changes: 47 additions & 0 deletions .github/ISSUE_TEMPLATE/BUG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''
---

### Describe the bug

_Provide a clear and concise description of what the bug is._

### Steps to reproduce

Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

### Expected behavior

_Provide a clear and concise description of what you expected to happen._

### Screenshots

_If applicable, add screenshots to help explain your problem._

### Environment

**Desktop (please complete the following information):**

- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**

- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

### Additional context

_Add any other context about the problem here._
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/STORY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Story
about: New feature or improvement request
title: ''
labels: enhancement
assignees: ''
---

### Describe the story

_Provide a clear description of the new feature or improvement to existing functionality._

### Acceptance criteria

_Provide clear acceptance criteria to validate the story is complete._

[Gherkin syntax](https://cucumber.io/docs/gherkin/reference) example:

> GIVEN the 'PERSONA' has 'DONE SOMETHING'
> WHEN the 'PERSONA' does 'ONE THING'
> THEN the 'PERSONA' must do 'THIS THING'
> AND the 'PERSONA' must do 'ANOTHER THING'
> BUT the 'PERSONA' must not do 'UNWANTED THING'

### Additional context

_Add any other context about the story here._
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/TASK.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: Task
about: A chore unrelated to features or problems
title: ''
labels: task
assignees: ''
---

### Describe the task

_Provide a clear description of the task._

### Additional context

_Add any other context about the task here._
40 changes: 40 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
:loudspeaker: **Instructions**

- Begin with a **DRAFT** pull request.
- Follow _italicized instructions_ to add detail to assist the reviewers.
- After completing all checklist items, change the pull request to **READY**.

---

### :wrench: Change Summary

_Describe the changes included in this pull request. [Link](https://docs.github.com/en/issues/tracking-your-work-with-issues/using-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword) to the associated GitHub issue(s)._

- fixes #1234
- Added the [...]
- Updated the [...]
- Fixed the [...]

### :memo: Checklist

_Pull request authors must complete the following tasks before marking the PR as ready to review._

- [ ] Complete a self-review of changes
- [ ] Unit tests have been created or updated
- [ ] The code is free of [new] lint errors and warnings
- [ ] Update storybook stories as needed
- [ ] Update project documentation as needed, README, JSDoc, etc.

### :test_tube: Steps to Test

_Describe the process to test the changes in this pull request._

1. Go to [...]
2. Click on [...]
3. Verify that [...]

### :link: Additional Information

_Optionally, provide additional details, screenshots, or URLs that may assist the reviewer._

- [...]
11 changes: 6 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,8 @@

# misc
.DS_Store
.env*
/.nx
/.nx/cache
/.vscode/*
!/.vscode/extensions.json
.nx
.vscode
.idea

npm-debug.log*
Expand All @@ -27,3 +24,7 @@ yarn-error.log*

# Optional eslint cache
.eslintcache

# dotenv environment variable files
.env*
!.env.example
5 changes: 0 additions & 5 deletions .vscode/extensions.json

This file was deleted.

4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "net.leanstacks.ionic8"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 10
versionName "1.1.0.10"
versionCode 11
versionName "1.1.0.11"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"url": "https://github.com/mwarman/ionic8-playground"
},
"license": "MIT",
"version": "0.1.0",
"version": "1.0.0",
"type": "module",
"scripts": {
"clean": "rimraf coverage dist",
Expand Down