-
Notifications
You must be signed in to change notification settings - Fork 10
/
spider.yaml
39 lines (36 loc) · 2.23 KB
/
spider.yaml
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
# Generated by Spider
generate_tests: true
groups:
- path: assets/images
class_name: AssetImages
package: res
types: [.png, .jpg, .jpeg, .webp, .webm, .bmp]
- path: assets/animations
class_name: AssetAnimations
package: res
types: [.flr, .gif]
# MANUAL:
# ===========================================================================================
# KEY TYPE DESCRIPTION REQUIRED?
# ===========================================================================================
# path/paths [STRING] Where to locate assets? [REQUIRED]
# -------------------------------------------------------------------------------------------
# class_name [STRING] What will be the name of [REQUIRED]
# generated dart class?
# -------------------------------------------------------------------------------------------
# package [STRING] Where to generate dart code [OPTIONAL]
# in the lib folder?
# -------------------------------------------------------------------------------------------
# file_name [STRING] What will be the name of the [OPTIONAL]
# generated dart file?
# -------------------------------------------------------------------------------------------
# prefix [STRING] What will be the prefix of [OPTIONAL]
# generated dart references?
# -------------------------------------------------------------------------------------------
# types [LIST<STRING>] Which types of assets should [OPTIONAL]
# be included?
# -------------------------------------------------------------------------------------------
# generate_test [LIST<STRING>] generate test cases to make sure [OPTIONAL]
# that asssets are still present in
# the project?
# ===========================================================================================