forked from ember-cli/ember-twiddle
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update ember-cli-uglify * Update some dependencies * Update more dependencies * Update yet more dependencies * Upgrade ember-cli to 2.13 * Upgrade ember-data to 2.13 * Upgrade ember-data to 2.18 * Try to fix travis failure * Upgrade to ember-cli-qunit@4 * Upgrade ember-cli-mirage * Upgrade ember-cli to 2.14 * Upgrade ember-cli to 2.15 * Added info about where the backend is * Fix didResize method undefined bug in canary (ember-cli#613) * Support New module imports * Changes after making ember-cli-cjs-transform configurable * Update ember-cli-cjs-transform * Support Ember 2.17 and 2.18 * Fix ability to sign in via github * v0.14.1 * yarn upgrade * Deprecate old versions of Ember * Support Ember 3.0 - 3.2 * updates contribution guide (ember-cli#621) * Try to upgrade ember-cli-qunit to 4.3.x * Fixed the damn ember-cli-qunit build * cleanup * Fix tests for tests * Refactor and reorganize ember-cli-build.js * Migrate to using babel-preset-env. (ember-cli#627) * Drop transpilation for IE. `last 2 versions` will target IE10 and IE11, which we don't support... * Migrate to using babel-preset-env. This will lead to less transpilation (e.g. we can use native async/await now, instead of transpiling). * Adds keyboard shortcut option to comment javascript code. (ember-cli#622) * adds shortcut comment option for javascript code * Adds test * change from `keypress` to `keydown` to trigger events * comment logic moved to initializer * fix test server shutdown * adds keyboard shortcuts for `run now` and `save` (ember-cli#628) * adds keyboard shortcuts for `run now` and `save` * adds deps for unit test * using e-keyboard test helper * minor tweaks * Bump Ember Data * Fix dependency test was timing out again
- Loading branch information
1 parent
264ccdb
commit af9eb6f
Showing
43 changed files
with
1,628 additions
and
784 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
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 |
---|---|---|
|
@@ -19,6 +19,7 @@ | |
npm-debug.log* | ||
yarn-error.log | ||
testem.log | ||
.vscode | ||
|
||
# ember-try | ||
.node_modules.ember-try/ | ||
|
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
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
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
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,11 @@ | ||
export function initialize(/* application */) { | ||
// adds "toggleCommentIndented" command to codemirror for default keymap | ||
|
||
if (CodeMirror) { | ||
CodeMirror.keyMap.default['Cmd-/'] = 'toggleCommentIndented'; | ||
} | ||
} | ||
|
||
export default { | ||
initialize | ||
}; |
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
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
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.