update
This commit is contained in:
@ -1,8 +1,24 @@
|
||||
import * as plugins from './smarthbs.plugins'
|
||||
|
||||
plugins.handlebars.registerHelper('__analyze', (analyzeContext) => {
|
||||
if (typeof analyzeContext === 'string') {
|
||||
if (plugins.handlebars.partials[analyzeContext]) {
|
||||
plugins.beautylog.log(`The analyzed partial ${analyzeContext} looks like this`)
|
||||
console.log(plugins.handlebars.partials[analyzeContext])
|
||||
} else {
|
||||
plugins.beautylog.error(`The Partial ${analyzeContext} cannot be found`)
|
||||
}
|
||||
return 'analyzed'
|
||||
}
|
||||
})
|
||||
|
||||
plugins.handlebars.registerHelper('__allPartialsLog', (analyzeContext) => {
|
||||
console.log(plugins.handlebars.partials)
|
||||
return 'analyzed'
|
||||
})
|
||||
|
||||
plugins.handlebars.registerHelper('__compile', (evaluationString, evaluationContext) => {
|
||||
let template = plugins.handlebars.compile(evaluationString)
|
||||
return template(evaluationContext)
|
||||
})
|
||||
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
import 'typings-global'
|
||||
import * as beautylog from 'beautylog'
|
||||
import * as handlebars from 'handlebars'
|
||||
import * as lodash from 'lodash'
|
||||
import * as path from 'path'
|
||||
@ -6,6 +7,7 @@ import * as smartfile from 'smartfile'
|
||||
import * as smartq from 'smartq'
|
||||
|
||||
export {
|
||||
beautylog,
|
||||
handlebars,
|
||||
lodash,
|
||||
path,
|
||||
|
Reference in New Issue
Block a user