-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yml
185 lines (182 loc) · 5.28 KB
/
package.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
apps:
node-default:
file: src/mask.ts
outputMain: lib/mask.node.js
package:
moduleWrapperCustomPath: "./src/node-wrapper.js"
settings:
atma-io-middleware-condcomments:
defines:
BROWSER: false
NODE: true
atma-io-middleware-uglify:
uglify:
warnings: true
compress:
dead_code: true
unused: true
arguments: false
booleans: false
collapse_vars: false
comparisons: false
conditionals: false
hoist_funs: false
hoist_props: false
hoist_vars: false
if_return: false
inline: false
join_vars: false
keep_fnames: true
loops: false
negate_iife: false
reduce_funcs: false
reduce_vars: false
switches: false
typeofs: false
properties: false
sequences: false
side_effects: false
drop_debugger: false
global_defs:
DEBUG: false
mangle: false
parse: {}
output:
beautify: true
braces: true
quote_style: 1
indent_level: 2
comments: "^!"
bootstrap:
file: src/client/bootstrap.ts
outputMain: lib/mask.bootstrap.js
package:
moduleWrapperCustomPath: "./src/bootstrap-wrapper.js"
settings:
atma-io-middleware-condcomments:
defines:
BROWSER: true
NODE: false
atma-io-middleware-uglify:
uglify:
warnings: true
compress:
dead_code: true
unused: true
arguments: false
booleans: false
collapse_vars: false
comparisons: false
conditionals: false
hoist_funs: false
hoist_props: false
hoist_vars: false
if_return: false
inline: false
join_vars: false
keep_fnames: true
loops: false
negate_iife: false
reduce_funcs: false
reduce_vars: false
switches: false
typeofs: false
properties: false
sequences: false
side_effects: false
drop_debugger: false
global_defs:
DEBUG: false
mangle: false
parse: {}
output:
beautify: true
braces: true
quote_style: 1
indent_level: 2
comments: "^!"
common:
rewrites:
'/ref-mask/src/builder/delegate/build_component.ts': '/src/builder/delegate/build_component.ts'
'/ref-mask/src/builder/delegate/builder_buildFactory.ts': '/src/builder/delegate/builder_buildFactory.ts'
'/ref-mask/src/builder/delegate/exports.ts': '/src/builder/delegate/exports.ts'
'/ref-mask/src/custom/mock-attributes.ts': '/src/mock/attr-handler.ts'
'/ref-mask/src/custom/mock-utils.ts': '/src/mock/util-handler.ts'
'/ref-mask/src/custom/mock-tags.ts': '/src/mock/tag-handler.ts'
dependencies:
'parsers/.+.ts': 'custom/exports.ts'
'feature/.+.ts': 'custom/exports.ts'
'handlers/.+.ts': 'custom/exports.ts'
'mask\-compo/.+.ts': 'custom/exports.ts'
'projects/expression': 'custom/exports.ts'
'PromisedStream.ts': 'SubjectStream.ts'
'DeferStatement.ts': 'PromisedStream.ts'
'DeferredExp.ts': 'PromisedStream.ts'
'AwaitableCtx.ts': 'PromisedStream.ts'
'ObjectStream.ts': 'PromisedStream.ts'
'compo/Component.ts': 'compo/CompoStatics.ts'
'compo/CompoStatics.ts': 'compo/pipes.ts'
'compo/CompoStatics.ts': 'signal/exports.ts'
'parsers/content.ts': 'content/style.ts'
'modules/await.ts': 'mask\-compo/src/exports.ts'
'DoctypeNodeInn.ts': 'ElementNodeInn.ts'
'builder_buildFactory.ts': 'builder/BuilderData.ts'
package:
module: commonjs
moduleWrapper: custom
commonjs:
output: simplified
import:
removeUnusedExports: true
lazy:
"/custom/*":
- modules/exports
- expression/src/exports
"/expression/*":
- project/observer
"/builder/*":
- "/feature/"
"/renderer/*":
- compo/exports
"/mask-compo/*":
- util/reporters
- parser/exports
- builder/exports
- expression/src/exports
- renderer/exports
- parser/exports
- "/feature/"
CompoStatics\b:
- Component
"/expression/*":
- mask-compo
dynamicDependencies:
- "^vm$"
- "^fs$"
- "^module$"
- "^path$"
- "html_entities"
extensions:
io:
type: js
defaultExtensions:
js: ts
middlewares:
js:
- atma-io-middleware-condcomments:read
- atma-io-middleware-importer:read
- atma-io-middleware-uglify:write
ts:
- atma-io-middleware-condcomments:read
- atma-io-middleware-importer:read
- atma-loader-ts:read
options:
include:
routes:
"@core": ref-mask/src/{0}
"@utils": ref-utils/src/{0}
"@mask-j": ref-mask/projects/mask-j/src/jmask/{0}
"@compo": ref-mask/projects/mask-compo/src/{0}
"@binding": ref-mask/projects/mask-binding/src/{0}
"@project": ref-mask/projects/{0}
"@mask-node": src/{0}