Skip to content

Commit db6de3e

Browse files
committed
chore(fonts): install via npm
1 parent 34d6229 commit db6de3e

File tree

6 files changed

+12
-119
lines changed

6 files changed

+12
-119
lines changed

Gulpfile.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,9 @@ var vendorFiles = function(done) {
261261
src(['node_modules/bootstrap/dist/css/bootstrap.min.*', 'node_modules/highlight.js/styles/atom-one-dark.css'])
262262
.pipe(dest(paths.styles.output))
263263

264-
// TODO copy and install vendor fonts
264+
// copy vendor fonts
265+
src('node_modules/@neos21/bootstrap3-glyphicons/dist/fonts/*')
266+
.pipe(dest(paths.fonts.output))
265267
// Signal completion
266268
done()
267269
}

package-lock.json

+5-114
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
"gulp-flatmap": "^1.0.2",
3333
"gulp-header": "^2.0.7",
3434
"gulp-optimize-js": "^1.1.0",
35-
"gulp-postcss": "^8.0.0",
3635
"gulp-rename": "^1.4.0",
3736
"gulp-sass": "^4.0.2",
3837
"gulp-standard": "^12.0.0",
@@ -42,6 +41,7 @@
4241
"mocha": "^6.1.3"
4342
},
4443
"dependencies": {
44+
"@neos21/bootstrap3-glyphicons": "^1.0.3",
4545
"bootstrap": "^4.3.1",
4646
"highlight.js": "^9.15.6",
4747
"jquery": "^3.4.0",

src/main/xar-resources/data/testing/testing.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
speaking, the difference between the two is fluid.</para>
5151
</listitem>
5252
</orderedlist>
53-
<para>When running these different tests in concert, we usually speak of end-to-end testing (<quote>e2e</quote>). There will never be a one-size-fits-all solution to take care of all your testing needs. Writing good test suites takes time and planning. You can find
53+
<para>When running these different tests in concert, we usually speak of end-to-end testing (<emphasis>e2e</emphasis>). There will never be a one-size-fits-all solution to take care of all your testing needs. Writing good test suites takes time and planning. You can find
5454
out more about available options and their use cases in the articles linked above. The remainder of this article will discuss some general considerations for how to design your test suite, without referencing a specific implementation. The listings use
5555
pseudo-code to focus on relevant lines. Pseudo-code is not intended to be executable, so it won't run if you copy-paste it into, e.g., eXide. For working code, please consult the articles links throughout.</para>
5656
</sect1>

src/main/xar-resources/resources/styles/exist-2.2.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134

135135
/* line 84, src/main/frontend/sass/_variables.scss */
136136
.content dl.wide dt {
137-
width: 25em;
137+
width: 35em;
138138
word-wrap: break-word;
139139
}
140140

0 commit comments

Comments
 (0)