-
Notifications
You must be signed in to change notification settings - Fork 2
/
Grunt_parameters_ini.yml
132 lines (96 loc) · 2.66 KB
/
Grunt_parameters_ini.yml
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
---
# --------------------------------------------------------
# In this file the paths are defined which the
# Grunt task runner uses.
#
# 10th February 2017
# Hannes Hirzel
#
#
# This file follows the YAML conventions
# http://yaml.org/
# and serves as an "ini" file, a file to set
# parameters.
#
#
# Comment lines start with a hash sign #
#
# Subdirectories for the data processing
# are assigned in this file.
#
#
# From the command line run
#
# grunt aTaskName
#
#
# List of available tasks is available through
#
# grunt --help
#
#
# Prominent commands are
#
# grunt build
#
#
# grunt csv2json
#
# The latter command converts what is in the 'data/csv' directory to
# 'data/json'. It has to be called before issuing a command like
#
# grunt odgreport
#
# or
#
# grunt htmlspelling
#
#
#
#
# Note for developers:
# --------------------
#
# The main advantage for this file to be in YAML instead of
# JSON is that comments are possible and no curly brackets have
# to be used.
#
#
# To convert this 'initialisation data' to JSON use
# for example
# https://www.json2yaml.com/convert-yaml-to-json
#
#
# The Grunt task runner processes the content of this file
# with 'readyaml', see
# http://gruntjs.com/api/grunt.file#grunt.file.readyaml
#
# --------------------------------------------------------
# --------------------------------------------------------------
# The LearnWords data is taken from
# --------------------------------------------------------------
INPUT_DIR: data
# You may put a hash sign in front of the line above to
# deactivate that input data is taken from the 'data' directory
# and remove the hash sign below. Then the input data is taken
# from a sibling directory of the project directory called
# 'LW-data-g'. The data directory needs to contain a subdirectory
# 'csv' which should contain word lists.
# INPUT_DIR: ../LW-data-g
# --------------------------------------------------------------
# The directory to put converted data
# for other use, for example a HTML report or a LibreOffice Draw
# export of pictures with labels in the translated language
# of the CSV wor list data in the input directory.
# --------------------------------------------------------------
OUTPUT_DIR: data-export
# OUTPUT_DIR: ../LW-data-export
# --------------------------------------------------------------
# The directory for the GUI demo
# --------------------------------------------------------------
WEB_ROOT: public
BUILD_DIR: public/js
# --------------------------------------------------------------
# The distribution directory for the library LW.js
# --------------------------------------------------------------
DIST_DIR: dist