@travetto/doc 3.1.5 → 3.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/doc",
3
- "version": "3.1.5",
3
+ "version": "3.1.7",
4
4
  "description": "Documentation support for the Travetto framework",
5
5
  "keywords": [
6
6
  "docs",
@@ -24,12 +24,12 @@
24
24
  "directory": "module/doc"
25
25
  },
26
26
  "dependencies": {
27
- "@travetto/base": "^3.1.2",
27
+ "@travetto/base": "^3.1.3",
28
28
  "@types/prismjs": "^1.26.0",
29
29
  "prismjs": "^1.29.0"
30
30
  },
31
31
  "peerDependencies": {
32
- "@travetto/cli": "^3.1.6"
32
+ "@travetto/cli": "^3.1.8"
33
33
  },
34
34
  "peerDependenciesMeta": {
35
35
  "@travetto/cli": {
@@ -71,6 +71,10 @@ export const MOD_MAPPING = {
71
71
  name: '@travetto/email', folder: '@travetto/email', displayName: 'Email',
72
72
  description: 'Email transmission module.'
73
73
  },
74
+ EmailCompiler: {
75
+ name: '@travetto/email-compiler', folder: '@travetto/email-compiler', displayName: 'Email Compilation Support',
76
+ description: 'Email compiling module'
77
+ },
74
78
  EmailInky: {
75
79
  name: '@travetto/email-inky', folder: '@travetto/email-inky', displayName: 'Email Inky Templates',
76
80
  description: 'Email Inky templating module'
@@ -79,10 +83,6 @@ export const MOD_MAPPING = {
79
83
  name: '@travetto/email-nodemailer', folder: '@travetto/email-nodemailer', displayName: 'Email Nodemailer Support',
80
84
  description: 'Email transmission module.'
81
85
  },
82
- EmailTemplate: {
83
- name: '@travetto/email-template', folder: '@travetto/email-template', displayName: 'Email Templating',
84
- description: 'Email templating module'
85
- },
86
86
  Eslint: {
87
87
  name: '@travetto/eslint', folder: '@travetto/eslint', displayName: 'ES Linting Rules',
88
88
  description: 'ES Linting Rules'
package/src/types.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { JSXElement, ValidHtmlTags } from '../jsx-runtime';
1
+ import { JSXElement, ValidHtmlTags } from '@travetto/doc/jsx-runtime';
2
2
  import { JSXElementByFn, c } from './jsx';
3
3
 
4
4
  export type Wrapper = Record<string, (cnt: string) => string>;