ember-repl 4.0.0 → 4.0.2

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": "ember-repl",
3
- "version": "4.0.0",
3
+ "version": "4.0.2",
4
4
  "description": "Addon for enabling REPL and Playground creation with Ember/Glimmer",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -90,6 +90,7 @@ export async function compileMD(
90
90
  importMap?: EvalImportMap;
91
91
  topLevelScope?: ScopeMap;
92
92
  remarkPlugins?: UnifiedPlugin[];
93
+ rehypePlugins?: UnifiedPlugin[];
93
94
  CopyComponent?: string;
94
95
  ShadowComponent?: string;
95
96
  }
@@ -114,6 +115,7 @@ export async function compileMD(
114
115
  CopyComponent: options?.CopyComponent,
115
116
  ShadowComponent: options?.ShadowComponent,
116
117
  remarkPlugins: options?.remarkPlugins,
118
+ rehypePlugins: options?.rehypePlugins,
117
119
  });
118
120
 
119
121
  rootTemplate = templateOnlyGlimdown;
@@ -29,6 +29,7 @@ const SUPPORTED_FORMATS = ['glimdown', 'gjs', 'hbs'];
29
29
  interface GlimdownOptions extends Scope, Events {
30
30
  format: 'glimdown';
31
31
  remarkPlugins?: UnifiedPlugin[];
32
+ rehypePlugins?: UnifiedPlugin[];
32
33
  CopyComponent?: string;
33
34
  ShadowComponent?: string;
34
35
  topLevelScope?: ScopeMap;