-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(code-stripping): remove classCallChecks for perf, strip unused c…
…ode from builds
- Loading branch information
Showing
4 changed files
with
88 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import Ember from 'ember'; | ||
|
||
const { | ||
assert: emberAssert, | ||
warn: emberWarn, | ||
deprecate: emberDeprecate, | ||
Logger | ||
} = Ember; | ||
|
||
export function instrument(cb) { | ||
cb(); | ||
} | ||
|
||
export function debug() { | ||
Logger.debug(...arguments); | ||
} | ||
|
||
export function assert() { | ||
emberAssert(...arguments); | ||
} | ||
|
||
export function warn() { | ||
emberWarn(...arguments); | ||
} | ||
|
||
export function deprecate() { | ||
emberDeprecate(...arguments); | ||
} | ||
|
||
export function stripInProduction(cb) { | ||
cb(); | ||
} |
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