File tree Expand file tree Collapse file tree 4 files changed +292
-611
lines changed Expand file tree Collapse file tree 4 files changed +292
-611
lines changed Original file line number Diff line number Diff line change 21
21
- name : Install Node
22
22
uses : actions/setup-node@v2
23
23
with :
24
- node-version : 12 .x
24
+ node-version : 16 .x
25
25
cache : npm
26
26
- name : Install Dependencies
27
27
run : npm ci
37
37
- name : Install Node
38
38
uses : actions/setup-node@v2
39
39
with :
40
- node-version : 12 .x
40
+ node-version : 16 .x
41
41
cache : npm
42
42
- name : Install Dependencies
43
43
run : npm ci
44
+ - run : npm run clone
44
45
- name : Run Tests
45
46
run : npm test
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
3
const EmberApp = require ( 'ember-cli/lib/broccoli/ember-app' ) ;
4
+ const mergeTrees = require ( 'broccoli-merge-trees' ) ;
5
+ const funnel = require ( 'broccoli-funnel' ) ;
4
6
5
7
module . exports = function ( defaults ) {
6
8
let app = new EmberApp ( defaults , {
7
9
rfcProcess : {
8
10
textLocation : 'processed-rfcs' ,
9
11
} ,
12
+ trees : {
13
+ public : mergeTrees ( [
14
+ 'public' ,
15
+ funnel ( 'rfcs/images' , {
16
+ destDir : 'images' ,
17
+ } ) ,
18
+ ] ) ,
19
+ } ,
10
20
} ) ;
11
21
12
22
// Use `app.import` to add additional libraries to the generated
You can’t perform that action at this time.
0 commit comments