Skip to content

Commit 64875a4

Browse files
committed
[TASK] Init webpack build chain
1 parent 3dacb2b commit 64875a4

35 files changed

+22470
-19
lines changed

Configuration/TypoScript/page/page.typoscript

+2-19
Original file line numberDiff line numberDiff line change
@@ -84,35 +84,18 @@ page {
8484
## includeCSS
8585
###
8686
includeCSS {
87-
style = EXT:startpilot/Resources/Public/Css/main.min.css
87+
style = EXT:startpilot/Resources/Public/style.css
8888
}
8989

9090
###
9191
## includeJS
9292
###
9393
includeJSFooter {
94-
main = EXT:startpilot/Resources/Public/JavaScript/main.min.js
94+
main = EXT:startpilot/Resources/Public/main.js
9595
main.async = 1
9696
}
9797
}
9898

99-
###
100-
## applicationContext
101-
###
102-
[applicationContext = Development*]
103-
page {
104-
# Override min files
105-
includeCSS {
106-
style = EXT:startpilot/Resources/Public/Css/main.css
107-
}
108-
109-
# Override min files
110-
includeJSFooter {
111-
main = EXT:startpilot/Resources/Public/JavaScript/main.js
112-
}
113-
}
114-
[END]
115-
11699
[getTSFE().beUserLogin] || [applicationContext = Development*]
117100
// show some debug infos in <head>
118101
page.headerData.666999 = TEXT

Resources/Build/.editorconfig

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
charset = utf-8
9+
end_of_line = lf
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
# CSS-Files
14+
[*.css]
15+
indent_style = space
16+
indent_size = 4
17+
18+
# HTML-Files
19+
[*.html]
20+
indent_style = tab
21+
indent_size = 4
22+
23+
# TMPL-Files
24+
[*.tmpl]
25+
indent_style = tab
26+
indent_size = 4
27+
28+
# SCSS-Files
29+
[*.scss]
30+
indent_style = space
31+
indent_size = 4
32+
33+
# JS-Files
34+
[*.js]
35+
indent_style = space
36+
indent_size = 4
37+
38+
# JSON-Files
39+
[*.json]
40+
indent_style = tab
41+
indent_size = 4
42+
43+
# PHP-Files
44+
[*.php]
45+
indent_style = space
46+
indent_size = 4
47+
48+
# ReST-Files
49+
[*.rst]
50+
indent_style = space
51+
indent_size = 3
52+
53+
# MD-Files
54+
[*.md]
55+
indent_style = space
56+
indent_size = 4
57+
58+
# YAML-Files
59+
[{*.yaml,*.yml}]
60+
indent_style = space
61+
indent_size = 2
62+
63+
# package.json
64+
# .travis.yml
65+
# bower.json
66+
[{package.json,.travis.yml,bower.json}]
67+
indent_style = space
68+
indent_size = 2
69+
70+
# TypoScript
71+
[*.ts]
72+
indent_style = space
73+
indent_size = 2
74+
[*.typoscript]
75+
indent_style = space
76+
indent_size = 2
77+
78+
# XLF-Files
79+
[*.xlf]
80+
indent_style = tab
81+
indent_size = 4
82+
83+
# SQL-Files
84+
[*.sql]
85+
indent_style = tab
86+
indent_size = 2

0 commit comments

Comments
 (0)