Skip to content

Commit 5741a28

Browse files
authored
Merge pull request #316 from IgnaceMaes/upgrade-guidemaker-ember-template
deps: upgrade guidemaker deps
2 parents 27c5b7d + 1b3a899 commit 5741a28

File tree

6 files changed

+16643
-18682
lines changed

6 files changed

+16643
-18682
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88

99
env:
10-
NODE_VERSION: 16
10+
NODE_VERSION: 20
1111

1212
jobs:
1313
lint:

Diff for: .node-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
20.11.0

Diff for: config/environment.js

+19
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,25 @@ module.exports = function (environment) {
3333
sourceRepo: 'https://github.com/ember-learn/cli-guides',
3434
sourceBranch: 'main',
3535
},
36+
37+
'ember-showdown-shiki': {
38+
theme: 'github-dark',
39+
languages: [
40+
'bash',
41+
'css',
42+
'http',
43+
'javascript',
44+
'json',
45+
'json5',
46+
'ruby',
47+
'scss',
48+
'yaml',
49+
'typescript',
50+
'glimmer-js',
51+
'glimmer-ts',
52+
'handlebars',
53+
],
54+
},
3655
};
3756

3857
if (environment === 'development') {

Diff for: config/fastboot.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = function () {
2+
return {
3+
buildSandboxGlobals(defaultGlobals) {
4+
return Object.assign({}, defaultGlobals, {
5+
atob: atob,
6+
});
7+
},
8+
};
9+
};

0 commit comments

Comments
 (0)