-
Notifications
You must be signed in to change notification settings - Fork 108
Convert to Monorepo #289
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
Merged
Merged
Convert to Monorepo #289
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
f53a1aa
Move main package to `packages/ember-cli-code-coverage`
Turbo87 f80cdfe
Move prettier config to the root folder
Turbo87 690fa09
Add test packages
Turbo87 fc44444
Add tests for the test packages
Turbo87 7c94995
Remove obsolete test fixtures
Turbo87 eaecc2a
Address review comments.
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,25 +1,14 @@ | ||
| # See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
|
||
| # compiled output | ||
| /dist/ | ||
| /tmp/ | ||
|
|
||
| # dependencies | ||
| /bower_components/ | ||
| /node_modules/ | ||
| bower_components/ | ||
| node_modules/ | ||
|
|
||
| # misc | ||
| /.env* | ||
| /.pnp* | ||
| /.sass-cache | ||
| /connect.lock | ||
| /coverage/ | ||
| /libpeerconnection.log | ||
| /npm-debug.log* | ||
| /testem.log | ||
| /yarn-error.log | ||
| npm-debug.log* | ||
| yarn-error.log | ||
|
|
||
| # ember-try | ||
| /.node_modules.ember-try/ | ||
| .node_modules.ember-try/ | ||
| /bower.json.ember-try | ||
| /package.json.ember-try |
This file contains hidden or 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 hidden or 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or 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,25 @@ | ||
| # See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
|
||
| # compiled output | ||
| /dist/ | ||
| /tmp/ | ||
|
|
||
| # dependencies | ||
| /bower_components/ | ||
| /node_modules/ | ||
|
|
||
| # misc | ||
| /.env* | ||
| /.pnp* | ||
| /.sass-cache | ||
| /connect.lock | ||
| /coverage/ | ||
| /libpeerconnection.log | ||
| /npm-debug.log* | ||
| /testem.log | ||
| /yarn-error.log | ||
|
|
||
| # ember-try | ||
| /.node_modules.ember-try/ | ||
| /bower.json.ember-try | ||
| /package.json.ember-try |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or 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,93 @@ | ||
| { | ||
| "name": "ember-cli-code-coverage", | ||
| "version": "1.0.0", | ||
| "description": "Code coverage for ember projects using Istanbul", | ||
| "keywords": [ | ||
| "ember-addon" | ||
| ], | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/kategengler/ember-cli-code-coverage", | ||
| "directory": "packages/ember-cli-code-coverage" | ||
| }, | ||
| "license": "MIT", | ||
| "author": "Katie Gengler", | ||
| "contributors": [ | ||
| "Matthew Dahl (https://github.com/sandersky)", | ||
| "Robert Jackson (https://github.com/rwjblue)", | ||
| "Robert Wagner (https://github.com/rwwagner90)" | ||
| ], | ||
| "directories": { | ||
| "doc": "doc", | ||
| "test": "tests" | ||
| }, | ||
| "scripts": { | ||
| "browser-test": "COVERAGE=true ember test", | ||
| "lint:hbs": "ember-template-lint .", | ||
| "lint:js": "eslint .", | ||
| "test": "npm run lint:js" | ||
| }, | ||
| "dependencies": { | ||
| "babel-plugin-istanbul": "^6.0.0", | ||
| "body-parser": "^1.19.0", | ||
| "ember-cli-version-checker": "^5.1.1", | ||
| "fs-extra": "^9.0.0", | ||
| "istanbul-lib-coverage": "^3.0.0", | ||
| "istanbul-lib-report": "^3.0.0", | ||
| "istanbul-reports": "^3.0.2", | ||
| "node-dir": "^0.1.17", | ||
| "walk-sync": "^2.1.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@ember/optional-features": "^1.3.0", | ||
| "@glimmer/component": "^1.0.0", | ||
| "@glimmer/tracking": "^1.0.0", | ||
| "babel-eslint": "^10.1.0", | ||
| "broccoli-asset-rev": "^3.0.0", | ||
| "ember-auto-import": "^1.5.3", | ||
| "ember-cli": "~3.16.2", | ||
| "ember-cli-addon-tests": "^0.11.0", | ||
| "ember-cli-babel": "^7.17.2", | ||
| "ember-cli-dependency-checker": "^3.2.0", | ||
| "ember-cli-htmlbars": "^4.2.2", | ||
| "ember-cli-inject-live-reload": "^2.0.2", | ||
| "ember-cli-sri": "^2.1.1", | ||
| "ember-cli-uglify": "^3.0.0", | ||
| "ember-disable-prototype-extensions": "^1.1.3", | ||
| "ember-exam": "1.0.0", | ||
| "ember-export-application-global": "^2.0.1", | ||
| "ember-load-initializers": "^2.1.1", | ||
| "ember-maybe-import-regenerator": "^0.1.6", | ||
| "ember-qunit": "^4.6.0", | ||
| "ember-resolver": "^7.0.0", | ||
| "ember-source": "~3.16.0", | ||
| "ember-source-channel-url": "^2.0.1", | ||
| "ember-template-lint": "^2.8.0", | ||
| "ember-try": "^1.4.0", | ||
| "eslint": "^7.1.0", | ||
| "eslint-config-prettier": "^6.11.0", | ||
| "eslint-plugin-ember": "^8.5.2", | ||
| "eslint-plugin-node": "^11.1.0", | ||
| "eslint-plugin-prettier": "^3.1.4", | ||
| "glob": "^7.1.3", | ||
| "loader.js": "^4.7.0", | ||
| "prettier": "^2.0.5", | ||
| "qunit-dom": "^1.0.0", | ||
| "release-it": "^13.6.0", | ||
| "release-it-lerna-changelog": "^2.3.0", | ||
| "sinon": "^4.2.2" | ||
| }, | ||
| "engines": { | ||
| "node": "10.* || >= 12" | ||
| }, | ||
| "publishConfig": { | ||
| "registry": "https://registry.npmjs.org" | ||
| }, | ||
| "ember": { | ||
| "edition": "octane" | ||
| }, | ||
| "ember-addon": { | ||
| "configPath": "tests/dummy/config", | ||
| "before": "ember-cli-typescript" | ||
| } | ||
| } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.