-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[CHORE] build speed improvements & docs path fix #6734
Changes from all commits
b67f0c3
05f101f
85da8e7
217e298
6be9b95
fbf06f8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,14 @@ | |
"build": "ember build", | ||
"build:production": "ember build --environment=production", | ||
"start": "ember server", | ||
"docs": "ember ember-cli-yuidoc", | ||
"docs": "mkdir -p dist && ember ember-cli-yuidoc", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this work correctly if you already have stuff in dist? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, the
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I meant more from there being existing code inside the folder, vs just the folder itself |
||
"test": "ember test", | ||
"test:all": "ember try:each", | ||
"test:production": "ember test -e production", | ||
"test:optional-features": "ember test", | ||
"test:try-one": "ember try:one", | ||
"test:docs": "qunit node-tests/docs/test-coverage.js", | ||
"prepublishOnly": "ember build --environment=production" | ||
"test:docs": "mkdir -p dist && qunit node-tests/docs/test-coverage.js", | ||
"prepublishOnly": "mkdir -p dist && ember ember-cli-yuidoc" | ||
}, | ||
"author": "", | ||
"license": "MIT", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What caused this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixing the inclusion of the
debug
package, there is a follow up PR to this on that will make our tests and fixtures show the module, class, package and public/private status of each piece of API documentation so that "why" something changes is more clear.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add that to the PR description please?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!