-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathRacers.yaml
More file actions
65 lines (56 loc) · 1.7 KB
/
Copy pathRacers.yaml
File metadata and controls
65 lines (56 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Example configuration file for MakeCode Arcade to App to compile to static
# HTML, CSS, and JS files
# Config version (single number, incremented if breaking change to schema is
# made)
version: 1
project:
name: Racers
path_friendly_name: racers
description: "Enjoy the high-speed thrills of car racing in MakeCode Arcade!
For the MakeCode Arcade Mini Game Jam #3."
author: Cyrus Yiu
version: 1.3.2
# This is what the window title will be
# This will also be used for the executable file name for Electron outputs
# You can use {NAME} or {VERSION} or {AUTHOR} to substitute the correct
# values
title: "{NAME} v{VERSION}"
inputs:
# Can be share_link, github, or path
code:
type: share_link
value: https://arcade.makecode.com/84426-33815-03715-00484
# code:
# type: github
# value: https://github.com/UnsignedArduino/Racers
# checkout: master
# code:
# type: path
# value: "E:/Racers"
assets:
# Icon is optional but highly recommended, it will be used as the favicon
# and app icon
icon:
# Can be url or path
type: url
value: https://raw.githubusercontent.com/UnsignedArduino/MakeCode-Arcade-to-App/refs/heads/main/examples/Racers%20icon.png
# icon:
# type: path
# value: "./examples/Racers icon.png"
# Path where the build process will take place
build_dir: "./examples/Racers-build"
# You can have multiple outputs
# Currently available options are static, static-singlefile, electron, and
# tauri
outputs:
- type: static
- type: static-singlefile
# - type: electron
# window:
# width: 640
# height: 480
# - type: tauri
# identifier: com.unsignedarduino.racers
# window:
# width: 640
# height: 480