Skip to content

Commit 3e9e681

Browse files
committed
fix deployment issues
1 parent b24ca1b commit 3e9e681

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

ember-cli-build.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@ module.exports = function (defaults) {
77
rfcProcess: {
88
textLocation: 'processed-rfcs',
99
},
10+
11+
'ember-prism': {
12+
theme: 'okaidia',
13+
14+
components: [
15+
'apacheconf',
16+
'bash',
17+
'css',
18+
'handlebars',
19+
'http',
20+
'javascript',
21+
'json',
22+
'markup-templating',
23+
'ruby',
24+
'scss',
25+
'yaml',
26+
'typescript',
27+
'diff',
28+
],
29+
},
1030
});
1131

1232
// Use `app.import` to add additional libraries to the generated

process-rfcs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ proposal-pr: ${frontMatter['RFC PR']}
8585
tracking-link: ${frontMatter['tracking-link'] ?? ''}
8686
stage: ${kebabCase(frontMatter.Stage ?? 'accepted')}
8787
---
88-
${frontMatter.__content}`);
88+
${frontMatter.__content.replaceAll('```patch', '```diff')}`);
8989

9090
// Stage: 'Accepted',
9191
// 'Start Date': 2022-02-25T00:00:00.000Z,

0 commit comments

Comments
 (0)