-
Notifications
You must be signed in to change notification settings - Fork 110
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
New registry #39
Merged
Merged
New registry #39
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
8a7c569
registry rewrite, closes #19, closes #34
rvagg 04df8dc
move customEvents back down
rvagg b76786f
Merge branch 'master' into newregistry
rvagg 16f8244
Merge branch 'master' into newregistry
rvagg e3ebc4b
broken merge
rvagg 8caf6cd
cleanup and speedup
rvagg b644594
partial roll-back of #27
rvagg 9318e5c
added benchmarks.html to test changes
rvagg 591f4df
Merge remote-tracking branch 'fat/master' into newregistry
rvagg 195dd32
registry.has() optimisations
rvagg 4027c46
multi-library benchmarks based on @fat's benchmark.js work
rvagg f8b0312
\t
rvagg de39ff9
more benchmark work + nano-timer applet
rvagg befa148
closes #44
rvagg b2e1168
Merge remote-tracking branch 'fat/master' into newregistry
rvagg 65b7618
added 3 sequence benchmarks, add/fire/remove
rvagg 1976bcb
a few more comments
rvagg 98a33c4
Skipping non-standard layerX and layerY. Reference to the original ev…
2cb0e08
Instead of targeting screex(x/y) properties in the if statement, norm…
d6d0f97
style change, no-semicolon, comma-first
rvagg bc1a4c9
Merge remote-tracking branch 'paulredmond/layerX-layerY' into newregi…
rvagg 495c252
remove() and other fixes + more tests + cleanup
rvagg 9ca51be
readme fixes
rvagg 792f3af
Merge remote-tracking branch 'fat/master' into newregistry
rvagg 0d45565
stop() yay!
rvagg 909e5c0
Merge remote-tracking branch 'fat/master' into newregistry
rvagg 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 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 +1,2 @@ | ||
node_modules | ||
node_modules | ||
*.swp |
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 |
---|---|---|
@@ -1,24 +1,31 @@ | ||
require('smoosh').config({ | ||
"JAVASCRIPT": { | ||
"DIST_DIR": "./", | ||
"bean": [ | ||
"./src/copyright.js", | ||
"./src/bean.js" | ||
] | ||
}, | ||
"JSHINT_OPTS": { | ||
"boss": true, | ||
"forin": false, | ||
"curly": false, | ||
"debug": false, | ||
"devel": false, | ||
"evil": false, | ||
"regexp": false, | ||
"undef": false, | ||
"sub": true, | ||
"white": false, | ||
"indent": 2, | ||
"whitespace": true, | ||
"asi": true | ||
} | ||
}).run().build().analyze(); | ||
'JAVASCRIPT': { | ||
'DIST_DIR': './' | ||
, 'bean': [ | ||
'./src/copyright.js' | ||
, './src/bean.js' | ||
] | ||
} | ||
, 'JSHINT_OPTS': { | ||
'boss': true | ||
, 'forin': true | ||
, 'curly': false | ||
, 'debug': true | ||
, 'devel': false | ||
, 'evil': false | ||
, 'regexp': false | ||
, 'undef': true | ||
, 'sub': true | ||
, 'white': false | ||
, 'indent': 2 | ||
, 'whitespace': true | ||
, 'asi': true | ||
, 'trailing': true | ||
, 'latedef': true | ||
, 'laxbreak': true | ||
, 'browser': true | ||
, 'eqeqeq': true | ||
, 'bitwise': false | ||
, 'loopfunc': false | ||
} | ||
}).run().build().analyze() |
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.
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.
this was in the noConflict PR I put in, I needed
noConflict()
to work so I could test bean.js (old) against src/bean.js (new).