Skip to content
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

[feature]: Debugging Reporter #2910

Merged
merged 27 commits into from
Jan 29, 2021
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ba9e55a
Add script command. Remove sample backend script
sirugh Dec 16, 2020
c0a6e56
Initial
sirugh Dec 16, 2020
abd3484
More
sirugh Dec 17, 2020
eb1a6cf
cleanup
sirugh Dec 17, 2020
3663c4b
remove unused const
sirugh Dec 17, 2020
ed501b7
Update bug report template
sirugh Dec 17, 2020
0a4bfa4
Update bug report template
sirugh Dec 17, 2020
4072227
Remove magento version check since not all backends will expose it
sirugh Dec 17, 2020
750d7b4
process.version() -> process.version
revanth0212 Dec 21, 2020
7c73482
Parsing package-lock.json directly to get version details.
revanth0212 Dec 21, 2020
cc77b05
Using @yarnpkg/lockfile to generate dep-version list.
revanth0212 Dec 22, 2020
e9a314d
Added try catch around os version check.
revanth0212 Dec 22, 2020
c858cf5
Merge branch 'develop' into rugh/hackathon-2020-build-report
revanth0212 Dec 22, 2020
65d300e
Removed unnecessary code.
revanth0212 Dec 22, 2020
a44a00c
Merge branch 'rugh/hackathon-2020-build-report' of https://github.com…
revanth0212 Dec 22, 2020
045811b
Merge branch 'develop' into rugh/hackathon-2020-build-report
sirugh Jan 7, 2021
6a97577
Version updates.
revanth0212 Jan 7, 2021
f8559fb
Added supprort for multiple versions.
revanth0212 Jan 7, 2021
789c124
Minor logger change.
revanth0212 Jan 7, 2021
7c7ae86
Added mock fixtures.
revanth0212 Jan 8, 2021
abec157
Added initial test work.
revanth0212 Jan 8, 2021
ae7a30a
Added yarn.lock tests.
revanth0212 Jan 11, 2021
535cfd6
Added npm related tests.
revanth0212 Jan 11, 2021
4ddb8f1
Added other tests.
revanth0212 Jan 11, 2021
4ea451c
Added support for @adobe packages scanning.
revanth0212 Jan 11, 2021
a061195
Run tests if env is valid.
revanth0212 Jan 12, 2021
d527baa
Merge branch 'develop' into rugh/hackathon-2020-build-report
dpatil-magento Jan 28, 2021
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
46 changes: 26 additions & 20 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Bug Report
about: Report a bug you've found in our code!
title: "[bug]: A short, simple sentence describing the bug"
title: '[bug]: A short, simple sentence describing the bug'
labels: bug
assignees: ''
---
Expand All @@ -19,44 +19,50 @@ Feel free to remove this section before creating this issue.
-->

**Describe the bug**

A clear and concise description of what the bug is.

**To reproduce**

Steps to reproduce the behavior:

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

**Expected behavior**

A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Additional context**
Add any other context about the problem here.
If applicable, add screenshots to help explain your problem.

**Possible solutions**

Add any ideas about possible solutions to the problem here.

**Debug Report**

Paste the output of `yarn build:report`, and any other context about the problem, here.

**Please complete the following device information:**
- Device [e.g. iPhone6, PC, Mac, Pixel3]:
- OS [e.g. iOS8.1, Windows 10]:
- Browser [e.g. Chrome, Safari]:
- Browser Version [e.g. 22]:
- Magento Version:
- PWA Studio Version:
- NPM version `npm -v`:
- Node Version `node -v`:

- Device [e.g. iPhone6, PC, Mac, Pixel3]:
- Browser [e.g. Chrome, Safari]:
- Browser Version [e.g. 22]:
- Magento Version [e.g Magento Commerce 2.4]:

<!-- Complete the following sections to help us apply appropriate labels! -->

**Please let us know what packages this bug is in regards to:**
- [ ] `venia-concept`
- [ ] `venia-ui`
- [ ] `pwa-buildpack`
- [ ] `peregrine`
- [ ] `pwa-devdocs`
- [ ] `upward-js`
- [ ] `upward-spec`
- [ ] `create-pwa`

- [ ] `venia-concept`
- [ ] `venia-ui`
- [ ] `pwa-buildpack`
- [ ] `peregrine`
- [ ] `pwa-devdocs`
- [ ] `upward-js`
- [ ] `upward-spec`
- [ ] `create-pwa`
264 changes: 264 additions & 0 deletions packages/pwa-buildpack/lib/__fixtures__/mock-package-lock.json

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

12 changes: 12 additions & 0 deletions packages/pwa-buildpack/lib/__fixtures__/mock-package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "test_package",
"version": "0.0.1",
"dependencies": {
"@magento/pwa-buildpack": "7.0.0"
},
"devDependencies": {
"@adobe/apollo-link-mutation-queue": "1.0.2",
"@magento/peregrine": "8.0.0",
"@magento/venia-ui": "5.0.0"
}
}
Loading