Skip to content

Commit 33500d6

Browse files
author
Adrian Gygax
committed
Make library compatible with IE 11
1 parent 554e4b0 commit 33500d6

File tree

9 files changed

+13679
-4790
lines changed

9 files changed

+13679
-4790
lines changed

.babelrc

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1-
{
2-
"presets": [ "es2017" ]
1+
{
2+
"presets": [
3+
["env", {
4+
"targets": {
5+
"browsers": ["IE 11"]
6+
}
7+
}]
8+
]
39
}

.gitignore

Lines changed: 164 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,164 @@
1-
obj
2-
.vs
3-
.vscode
4-
node_modules
1+
obj
2+
.vs
3+
.vscode
4+
node_modules
5+
6+
### JetBrains template
7+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
8+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
9+
10+
# User-specific stuff
11+
.idea/**/workspace.xml
12+
.idea/**/tasks.xml
13+
.idea/**/usage.statistics.xml
14+
.idea/**/dictionaries
15+
.idea/**/shelf
16+
17+
# Generated files
18+
.idea/**/contentModel.xml
19+
20+
# Sensitive or high-churn files
21+
.idea/**/dataSources/
22+
.idea/**/dataSources.ids
23+
.idea/**/dataSources.local.xml
24+
.idea/**/sqlDataSources.xml
25+
.idea/**/dynamic.xml
26+
.idea/**/uiDesigner.xml
27+
.idea/**/dbnavigator.xml
28+
29+
# Gradle
30+
.idea/**/gradle.xml
31+
.idea/**/libraries
32+
33+
# Gradle and Maven with auto-import
34+
# When using Gradle or Maven with auto-import, you should exclude module files,
35+
# since they will be recreated, and may cause churn. Uncomment if using
36+
# auto-import.
37+
.idea/modules.xml
38+
.idea/*.iml
39+
.idea/modules
40+
*.iml
41+
*.ipr
42+
43+
# CMake
44+
cmake-build-*/
45+
46+
# Mongo Explorer plugin
47+
.idea/**/mongoSettings.xml
48+
49+
# File-based project format
50+
*.iws
51+
52+
# IntelliJ
53+
out/
54+
55+
# mpeltonen/sbt-idea plugin
56+
.idea_modules/
57+
58+
# JIRA plugin
59+
atlassian-ide-plugin.xml
60+
61+
# Cursive Clojure plugin
62+
.idea/replstate.xml
63+
64+
# Crashlytics plugin (for Android Studio and IntelliJ)
65+
com_crashlytics_export_strings.xml
66+
crashlytics.properties
67+
crashlytics-build.properties
68+
fabric.properties
69+
70+
# Editor-based Rest Client
71+
.idea/httpRequests
72+
73+
# Android studio 3.1+ serialized cache file
74+
.idea/caches/build_file_checksums.ser
75+
76+
### Node template
77+
# Logs
78+
logs
79+
*.log
80+
npm-debug.log*
81+
yarn-debug.log*
82+
yarn-error.log*
83+
lerna-debug.log*
84+
85+
# Diagnostic reports (https://nodejs.org/api/report.html)
86+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
87+
88+
# Runtime data
89+
pids
90+
*.pid
91+
*.seed
92+
*.pid.lock
93+
94+
# Directory for instrumented libs generated by jscoverage/JSCover
95+
lib-cov
96+
97+
# Coverage directory used by tools like istanbul
98+
coverage
99+
*.lcov
100+
101+
# nyc test coverage
102+
.nyc_output
103+
104+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
105+
.grunt
106+
107+
# Bower dependency directory (https://bower.io/)
108+
bower_components
109+
110+
# node-waf configuration
111+
.lock-wscript
112+
113+
# Compiled binary addons (https://nodejs.org/api/addons.html)
114+
build/Release
115+
116+
# Dependency directories
117+
node_modules/
118+
jspm_packages/
119+
120+
# TypeScript v1 declaration files
121+
typings/
122+
123+
# TypeScript cache
124+
*.tsbuildinfo
125+
126+
# Optional npm cache directory
127+
.npm
128+
129+
# Optional eslint cache
130+
.eslintcache
131+
132+
# Optional REPL history
133+
.node_repl_history
134+
135+
# Output of 'npm pack'
136+
*.tgz
137+
138+
# Yarn Integrity file
139+
.yarn-integrity
140+
141+
# dotenv environment variables file
142+
.env
143+
.env.test
144+
145+
# parcel-bundler cache (https://parceljs.org/)
146+
.cache
147+
148+
# next.js build output
149+
.next
150+
151+
# nuxt.js build output
152+
.nuxt
153+
154+
# vuepress build output
155+
.vuepress/dist
156+
157+
# Serverless directories
158+
.serverless/
159+
160+
# FuseBox cache
161+
.fusebox/
162+
163+
# DynamoDB Local files
164+
.dynamodb/

.idea/misc.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)