Skip to content

Commit

Permalink
Merge pull request #2390 from canjs/fix-mustache-core-mapping
Browse files Browse the repository at this point in the history
Fix mustache core mapping
  • Loading branch information
daffl committed May 19, 2016
2 parents 874a561 + 5ed439c commit 6366f16
Show file tree
Hide file tree
Showing 9 changed files with 17,264 additions and 7 deletions.
16 changes: 14 additions & 2 deletions Gruntfile.js
Expand Up @@ -258,8 +258,20 @@ module.exports = function (grunt) {
dist: [ 'test/dist/*.html' ],
compatibility: [ 'test/compatibility/*.html' ],
dev: [ 'test/dev/*.html' ],
individuals: [ '**/test.html', '!view/autorender/test.html',
'!bower_components/**/test.html', '!node_modules/**/test.html' ]
individuals: [
'component/**/test.html',
'compute/**/test.html',
'construct/**/test.html',
'control/**/test.html',
'event/**/test.html',
'list/**/test.html',
'map/**/test.html',
'model/**/test.html',
'route/**/test.html',
'util/**/test.html',
'view/**/test.html',
'!view/autorender/test.html'
]
}
});
grunt.registerTask('browserify-package', function(){
Expand Down
8 changes: 7 additions & 1 deletion builder.json
Expand Up @@ -66,6 +66,12 @@
"description": "High performance Mustache templates",
"type": "plugin"
},
"can/view/stache/mustache_core": {
"name": "can.stache.mustache.core",
"type": "plugin",
"hidden": true,
"hasTest": false
},
"can/view/href/href": {
"name": "can.view.href",
"type": "core",
Expand Down Expand Up @@ -287,7 +293,7 @@
"library": "node_modules/jquery/dist/jquery.js",
"steal": {
"paths": {

}
}
},
Expand Down
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -211,6 +211,7 @@
"./view/view": "./dist/cjs/view/view",
"./view/ejs/ejs": "./dist/cjs/view/ejs/ejs",
"./view/stache/stache": "./dist/cjs/view/stache/stache",
"./view/stache/mustache_core": "./dist/cjs/view/stache/mustache_core",
"./view/href/href": "./dist/cjs/view/href/href",
"./control/control": "./dist/cjs/control/control",
"./route/route": "./dist/cjs/route/route",
Expand Down Expand Up @@ -249,4 +250,4 @@
"./util/vdom/document/document": "./dist/cjs/util/vdom/document/document",
"./view/import/import": "./dist/cjs/view/import/import"
}
}
}

0 comments on commit 6366f16

Please sign in to comment.