Skip to content

Commit 869b9f3

Browse files
kjugiquinnlangille
authored andcommitted
Webpack update to v4 + ie11 polyfills (SSENSE#266)
* Update dependencies + babelrc file and move some devDeps to deps * Update config to v4 webpack * Back to using only built in banner webpack plugin * Update docs files after build command * Update tests snapshots after upgrade jest package + update config * Update lib after build command * Remove ignored file from repo * Move to yarn due to npm run dev problems and no problems with yarn + change commends to yarn + add yarn.lock file * Update travic.yml config * Back to npm run than yarn in packege.json scripts * Add new end lines * Add new .gitignore file * Update dependencies from beta to stable version + update lock file + config and adjust one import * Move config from babelrc file to webpack config + browserslistrc config file * Repair tests and remove unused libs to JEST * Add build files
1 parent 41694ff commit 869b9f3

23 files changed

+3471
-1473
lines changed

.babelrc

-5
This file was deleted.

.browserslistrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
last 2 versions
2+
IE 11

.gitignore

+50-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,52 @@
1-
.DS_Store
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# node-waf configuration
24+
.lock-wscript
25+
26+
# Compiled binary addons (https://nodejs.org/api/addons.html)
27+
build/Release
28+
29+
# Dependency directories
230
node_modules/
3-
npm-debug.log
4-
coverage/
5-
/node_modules
6-
/.idea
31+
jspm_packages/
32+
33+
# Optional npm cache directory
34+
.npm
35+
36+
# Optional eslint cache
37+
.eslintcache
38+
39+
# Output of 'npm pack'
40+
*.tgz
41+
42+
# Yarn Integrity file
43+
.yarn-integrity
44+
45+
# dotenv environment variables file
746
.env
8-
.yarn-error.log
47+
48+
# parcel-bundler cache (https://parceljs.org/)
49+
.cache
50+
51+
# vuepress build output
52+
.vuepress/dist

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
language: node_js
22

3-
script: npm run test-coverage
3+
script: yarn test-coverage
44

55
after_script:
6-
- npm run coveralls
6+
- yarn coveralls
77

88
node_js:
9-
- "6.9"
9+
- "8.11.4"

config/webpack.base.conf.js

-54
This file was deleted.

config/webpack.min.conf.js

-22
This file was deleted.

dist/vue-carousel.min.js

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

docs/db.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)