aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2017-12-28 14:05:57 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2017-12-28 14:05:57 +0200
commit7f953954a25071d55e61d33ec9f6641fe283de9c (patch)
tree1806b2c91ed19a6662b2d45e6f8d4d7b6eb5f3c1 /src/tag
Initial commit
Diffstat (limited to 'src/tag')
-rw-r--r--src/tag/index.ts5
-rw-r--r--src/tag/scss.ts4
-rw-r--r--src/tag/tag.ts11
3 files changed, 20 insertions, 0 deletions
diff --git a/src/tag/index.ts b/src/tag/index.ts
new file mode 100644
index 0000000..cc2c768
--- /dev/null
+++ b/src/tag/index.ts
@@ -0,0 +1,5 @@
+const output = `import tag from './$name.tag';
+export default tag;
+`;
+
+export default output; \ No newline at end of file
diff --git a/src/tag/scss.ts b/src/tag/scss.ts
new file mode 100644
index 0000000..0c3e74e
--- /dev/null
+++ b/src/tag/scss.ts
@@ -0,0 +1,4 @@
+const output = `/* Write your SCSS here */
+`;
+
+export default output; \ No newline at end of file
diff --git a/src/tag/tag.ts b/src/tag/tag.ts
new file mode 100644
index 0000000..db1fc93
--- /dev/null
+++ b/src/tag/tag.ts
@@ -0,0 +1,11 @@
+const output = `<$name>
+ <!-- Write your HTML here -->
+
+ <script type="es6">
+ import style from './$name.scss'
+ /* Write your ES6 JS here */
+ </script>
+</$name>
+`;
+
+export default output; \ No newline at end of file