File tree 3 files changed +90
-4
lines changed
3 files changed +90
-4
lines changed Original file line number Diff line number Diff line change 1
1
on : [push]
2
2
3
3
jobs :
4
- plugin_json :
4
+ empty_data :
5
5
runs-on : ubuntu-latest
6
- name : Test merging some JSON files
6
+ name : Test for no output file with no input data
7
+ steps :
8
+ - name : Checkout
9
+ uses : actions/checkout@v4
10
+
11
+ - name : Test
12
+ uses : ./
13
+ with :
14
+ out-file : output.json
15
+
16
+ - name : xxx
17
+ shell : bash
18
+ run : |
19
+ if [ -f 'output.json' ]; then
20
+ echo "There is still an output file, this is incorrect"
21
+ exit 1
22
+ else
23
+ echo "No output file"
24
+ fi
25
+ file_to_file :
26
+ runs-on : ubuntu-latest
27
+ name : Test just copying the file
28
+ steps :
29
+ - name : Checkout
30
+ uses : actions/checkout@v4
31
+
32
+ - name : Test
33
+ uses : ./
34
+ with :
35
+ in-file : test/file.json
36
+ out-file : output_single.json
37
+
38
+ - name : Print output
39
+ shell : bash
40
+ run : |
41
+ wc -c < output_single.json
42
+ cat output_single.json
43
+ echo
44
+
45
+ - name : Upload artifact
46
+ uses : actions/upload-artifact@v4
47
+ with :
48
+ name : output
49
+ path : output_single.json
50
+
51
+ json_merging :
52
+ runs-on : ubuntu-latest
53
+ name : Test merging logic
7
54
steps :
8
55
- name : Checkout
9
56
uses : actions/checkout@v4
Original file line number Diff line number Diff line change
1
+ # Voxelite JSON Merger
2
+
3
+ GitHub Action to merge [ Voxelite] ( https://github.com/voxelite ) 's ` block.json ` (main JSON) with all JSONs in ` block ` directory.
4
+ The same can be done for items, entities...
5
+
6
+ ## Inputs
7
+
8
+ ### ` in-file `
9
+
10
+ Path to your ` block.json ` (or equivalent).
11
+
12
+ This is your main file with data.
13
+ Inside the file you should have a JSON Object with keys for codenames and their values an object with all the configuration.
14
+
15
+ ### ` in-directory `
16
+
17
+ Path to your directory containing all object files.
18
+ Inside each object (like a block) is represented by a single JSON file.
19
+ Name of the file is used as the object's name and inside is a JSON Object with all the configuration.
20
+
21
+ ### ` out-file `
22
+
23
+ ** Required**
24
+
25
+ File to write the output JSON into.
26
+
27
+ ## Example usage
28
+
29
+ ``` yaml
30
+ - name : block.json merging
31
+ uses : voxelite/json-merge@v1
32
+ with :
33
+ in-file : block.json
34
+ in-directory : block
35
+ out-file : out_block.json
36
+ ` ` `
37
+
38
+ For object format (block, item, entity...) look into official documentation.
Original file line number Diff line number Diff line change 14
14
15
15
let outputJson = JSON . constructor ( ) ;
16
16
17
- if ( inFile !== undefined )
17
+ if ( typeof inFile === "string" && inFile !== '' )
18
18
{
19
19
const fileData = fs . readFileSync ( inFile , 'utf8' ) ;
20
20
outputJson = JSON . parse ( fileData ) ;
21
21
}
22
22
23
- if ( inDirectory !== undefined )
23
+ if ( typeof inDirectory === "string" && inDirectory !== '' )
24
24
{
25
25
fs . readdirSync ( inDirectory ) . forEach ( filename => {
26
26
if ( ! filename . endsWith ( ".json" ) )
38
38
} ) ;
39
39
}
40
40
41
+ if ( outputJson . length > 0 )
41
42
{
42
43
fs . writeFileSync (
43
44
outFile ,
You can’t perform that action at this time.
0 commit comments