knockout-amd-helpers icon indicating copy to clipboard operation
knockout-amd-helpers copied to clipboard

This plugin is designed to be a lightweight and flexible solution to working with AMD modules in Knockout.js.

Results 7 knockout-amd-helpers issues
Sort by recently updated
recently updated
newest added

knockout 3.5.0 now ships with new knockout typings inside knockout npm package. This is no longer compatible with "@types/knockout-amd-helpers". Can either "@types/knockout-amd-helpers" be updated or can you add new typings...

I am getting the below error every time I build with webpack: > Critical dependency: the request of a dependency is an expression Any ideas how this can be fixed?

With the current implementation, ko.templateSources.requireTemplate.prototype.text() will be executed only after templateBinding.data observable is mutated with a non-null value, i.e. when the module is downloaded and instantiated. That is when the...

Would be nice to be able to configure additional requires by convention. So "module: 'MyModule'" could additionally require "css!styles/MyModule" or "less!styles/MyModule", here used with the require-css or require-less modules. That...

It looks like the problem is related to **line:117** ``` require([addTrailingSlash(ko.bindingHandlers.module.baseDir) + moduleName], function(mod) { ``` **& line:177** ``` templatePath = engine.defaultRequireTextPluginName + "!" + addTrailingSlash(engine.defaultPath) + this.key + engine.defaultSuffix;...

Hi Ryan, Quick question.Here's my setup again- ``` //parent page Html //parent view model this.moduleInfo=ko.observable( { data: "", disposeMethod: "dispose", id: "moduleId", initializer: "initialize", name: "modulevm", template: "moduleTmpl" } );...