Skip to content
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

Knockback: upgrade to node_modules and latest library #1159

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 18 additions & 2 deletions examples/knockback/.gitignore
@@ -1,9 +1,25 @@
node_modules/backbone/*
!node_modules/backbone/backbone.js
node_modules/backbone/

node_modules/backbone.localstorage/*
!node_modules/backbone.localstorage/backbone.localStorage.js

node_modules/knockback/*
!node_modules/knockback/knockback.js
!node_modules/knockback/node_modules

node_modules/knockback/node_modules/backbone/*
!node_modules/knockback/node_modules/backbone/backbone.js

node_modules/knockback/node_modules/underscore/*
!node_modules/knockback/node_modules/underscore/underscore.js

node_modules/knockback/node_modules/knockout/*
!node_modules/knockback/node_modules/knockout/build
node_modules/knockback/node_modules/knockout/build/*
!node_modules/knockback/node_modules/knockout/build/output
node_modules/knockback/node_modules/knockout/build/output/*
!node_modules/knockback/node_modules/knockout/build/output/knockout-latest.debug.js

node_modules/jquery/*
!node_modules/jquery/dist
node_modules/jquery/dist/*
Expand Down
5 changes: 4 additions & 1 deletion examples/knockback/index.html
Expand Up @@ -54,7 +54,10 @@ <h1>todos</h1>
<!-- App Dependencies -->
<script src="node_modules/todomvc-common/base.js"></script>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="js/lib/knockback-full-stack-0.16.9.min.js"></script>
<script src="node_modules/knockback/node_modules/underscore/underscore.js"></script>
<script src="node_modules/knockback/node_modules/backbone/backbone.js"></script>
<script src="node_modules/knockback/node_modules/knockout/build/output/knockout-latest.debug.js"></script>
<script src="node_modules/knockback/knockback.js"></script>
<script src="node_modules/backbone.localStorage/backbone.localStorage.js"></script>

<!-- App and Components -->
Expand Down
6 changes: 0 additions & 6 deletions examples/knockback/js/lib/backbone.localStorage-min.js

This file was deleted.

135 changes: 0 additions & 135 deletions examples/knockback/js/lib/knockback-full-stack-0.16.9.min.js

This file was deleted.

2 changes: 1 addition & 1 deletion examples/knockback/js/lib/knockout-extended-bindings.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/knockback/js/models/todo.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/knockback/js/models/todo_collection.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions examples/knockback/js/viewmodels/app.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/knockback/js/viewmodels/todo.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.