forked from skatejs/skatejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Many changes from coding sesh last night.
Switch to Preact as default renderer, thus removing all vdom wrapper code and old vdom code. Minor refactors. Switch to NWB for build. Rename test files. BREAKING CHANGE: move from IncrementalDOM to Preact.
- Loading branch information
1 parent
3a821d5
commit 4120815
Showing
61 changed files
with
2,486 additions
and
3,934 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 |
---|---|---|
@@ -1,36 +1,8 @@ | ||
# Logs | ||
logs | ||
*.log | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directory | ||
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git | ||
node_modules | ||
|
||
# Other | ||
.DS_Store | ||
.idea | ||
.tmp | ||
dist | ||
_book | ||
.vscode/ | ||
ts-output | ||
/coverage | ||
/demo/dist | ||
/es | ||
/lib | ||
/node_modules | ||
/umd | ||
npm-debug.log* | ||
/_book |
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 was deleted.
Oops, something went wrong.
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,23 @@ | ||
const browsers = require('./test/browsers'); | ||
|
||
module.exports = { | ||
type: 'web-module', | ||
npm: { | ||
esModules: true, | ||
umd: true | ||
}, | ||
karma: process.argv.indexOf('--ci') === -1 ? { | ||
browsers: [require('karma-chrome-launcher')] | ||
} : { | ||
sauceLabs: {}, | ||
customLaunchers: browsers, | ||
browsers: Object.keys(browsers), | ||
retryLimit: 3, | ||
reporters: ['dots', 'saucelabs'], | ||
autoWatch: false, | ||
concurrency: 4, | ||
browserDisconnectTimeout: 10000, | ||
browserDisconnectTolerance: 5, | ||
captureTimeout: 120000 | ||
} | ||
}; |
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.