ember-template-tag
v2.3.16
Published
instead of using ember-template-imports to find, parse & transform templates, this can be used.
Downloads
7,559
Readme
ember-template-tag
instead of using ember-template-imports to find, parse & transform templates, this can be used.
const { parseTemplates, preprocessEmbeddedTemplates, transform } = require('ember-template-tag');
const { TEMPLATE_TAG_NAME, TEMPLATE_LITERAL_IDENTIFIER, TEMPLATE_LITERAL_MODULE_SPECIFIER } = require('ember-template-tag');
the output of parseTemplates is
<template>Hello!</template>
[
{
"contentRange": [
10,
16,
],
"contents": "Hello!",
"endRange": {
"end": 27,
"start": 16,
},
"range": [
0,
27,
],
"startRange": {
"end": 10,
"start": 0,
},
"tagName": "template",
"type": "template-tag",
},
]
to transform
const { transform } = require('ember-template-tag');
const transformed = transform('...')