File tree 2 files changed +19
-21
lines changed
2 files changed +19
-21
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ TAG ?= stellar/stellar-docs:$(LABEL)
9
9
BUILD_DATE := $(shell date -u +% FT% TZ)
10
10
11
11
docker-build :
12
- $(SUDO ) docker build --pull --label org.opencontainers.image.created=" $( BUILD_DATE) " -t $(TAG ) .
12
+ $(SUDO ) docker build --no-cache -- pull --label org.opencontainers.image.created=" $( BUILD_DATE) " -t $(TAG ) .
13
13
14
14
docker-push :
15
15
$(SUDO ) docker push $(TAG )
Original file line number Diff line number Diff line change 1
- module . exports = function ( context , options ) {
2
- return {
3
- name : 'analytics-module' ,
1
+ module . exports = ( ) => ( {
2
+ name : 'analytics-module' ,
4
3
5
- injectHtmlTags ( { content} ) {
6
- return {
7
- preBodyTags : [
8
- {
9
- tagName : 'script' ,
10
- innerHTML : `
11
- if (typeof window.ga === "function") {
12
- window.ga("require", "linker");
13
- window.ga("linker:autolink", ["www.stellar.org", "stellar.org"]);
14
- }
15
- ` ,
16
- } ,
17
- ] ,
18
- } ;
19
- } ,
20
- } ;
21
- } ;
4
+ injectHtmlTags ( ) {
5
+ return {
6
+ preBodyTags : [
7
+ {
8
+ tagName : 'script' ,
9
+ innerHTML : `
10
+ if (typeof window.ga === "function") {
11
+ window.ga("require", "linker");
12
+ window.ga("linker:autolink", ["www.stellar.org", "stellar.org"]);
13
+ }
14
+ ` ,
15
+ } ,
16
+ ] ,
17
+ } ;
18
+ } ,
19
+ } ) ;
You can’t perform that action at this time.
0 commit comments