Package Exports
- content-tag
- content-tag/content_tag.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (content-tag) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
content-tag
content-tag is a preprocessor for JS files that are using the content-tag proposal. This originated with Ember.js' GJS and GTS functionality. You can read more by checking out the original RFC
This preprocessor can be used to transform files using the content-tag spec to standard JS. It is built on top of swc using Rust and is deployed as a wasm package.
Installation
npm install content-tagUsage
let { Preprocessor } = require('content-tag');
let p = new Preprocessor();
let output = p.process('<template>Hi</template>');
console.log(output);Contributing
See the CONTRIBUTING.md file.