Skip to content

Commit 4987571

Browse files
author
Xavier Agostini
authored
add typewritter (#228)
* add typewritter * fix a.js issues * fix tracking and update catalog * add updated styling * fix email field * start moving all tracking code from html to js files * cleanup tracking * fix scrollspy
1 parent cb5c4ac commit 4987571

File tree

33 files changed

+10371
-2923
lines changed

33 files changed

+10371
-2923
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ vendor
99
*.iml
1010
node_modules/
1111
src/assets/docs.bundle.js
12+
# Make sure to update `analytics` to the full path to your Typewriter client.

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ JEKYLL_ENV ?= development
55

66
.PHONY: dev
77
dev: node_modules vendor/bundle
8+
@npx typewriter
89
@$(BIN)/concurrently --raw --kill-others -n webpack,jekyll \
910
"$(BIN)/webpack --mode=development --watch" \
1011
"bundle exec jekyll serve --force_polling --trace --incremental -H 0.0.0.0 -V"
@@ -17,6 +18,7 @@ intialize-work-dir:
1718

1819
.PHONY: build
1920
build: node_modules vendor/bundle
21+
@npx typewriter
2022
@chown -R jekyll /workdir
2123
@$(BIN)/webpack --mode=production
2224
@JEKYLL_ENV=${JEKYLL_ENV} bundle exec jekyll build

0 commit comments

Comments
 (0)