-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#56 ) Break out common elements of knockout/tko compilation to `tko.b…
…uilder` This may have caused a couple regressions in tests, but they should be easy to find.
- Loading branch information
1 parent
ab522dd
commit de06cfb
Showing
9 changed files
with
350 additions
and
450 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
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,41 @@ | ||
{ | ||
"name": "tko", | ||
"version": "4.0.0-alpha4a", | ||
"description": "The TKO.js Javascript Library", | ||
"main": "dist/tko.js", | ||
"repository": "git@github.com:knockout/tko", | ||
"author": "The Knockout Team", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"tko.bind": "^4.0.0-alpha4", | ||
"tko.computed": "^4.0.0-alpha4", | ||
"tko.filter.punches": "^4.0.0-alpha4", | ||
"tko.lifecycle": "^4.0.0-alpha4", | ||
"tko.observable": "^4.0.0-alpha4", | ||
"tko.utils": "^4.0.0-alpha4", | ||
"tko.utils.parser": "^4.0.0-alpha4", | ||
"tslib": "^1.8.0" | ||
}, | ||
"__about__shared.package.json": "These properties are copied into all packages/*/package.json. Run `yarn repackage`", | ||
"standard": { | ||
"globals": [ | ||
"assert", | ||
"jasmine", | ||
"beforeEach", | ||
"before", | ||
"after", | ||
"afterEach", | ||
"it", | ||
"iit", | ||
"xit", | ||
"expect", | ||
"describe", | ||
"ddescribe" | ||
] | ||
}, | ||
"scripts": { | ||
"test": "karma start ../../karma.conf.js --once", | ||
"build": "rollup -c ../../rollup.config.js", | ||
"watch": "karma start ../../karma.conf.js" | ||
} | ||
} |
Oops, something went wrong.