Skip to content

Commit

Permalink
removing files created at build time and tidying up ignores (#1009)
Browse files Browse the repository at this point in the history
* only ignore automatically built polyfill.js files

* reorder and update git ignored files

* remove files installed at build time

* update shrinkwrap

* add comment to explain why we ignore polyfill.js files
  • Loading branch information
JakeChampion committed Dec 12, 2016
1 parent 15432ed commit 5b4a7fd
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 204 deletions.
44 changes: 26 additions & 18 deletions .eslintignore
@@ -1,19 +1,27 @@
polyfills/_ArrayIterator
polyfills/Array/of
polyfills/Array/prototype/values
polyfills/atob
polyfills/AudioContext
polyfills/fetch
polyfills/Function/prototype/bind
polyfills/HTMLPictureElement
polyfills/IntersectionObserver
polyfills/Intl
polyfills/JSON
polyfills/navigator/sendBeacon
polyfills/Promise
polyfills/setImmediate
polyfills/URL
polyfills/UserTiming
polyfills/WeakSet
polyfills/~html5-elements
# We ignore the polyfill.js files for third-party polyfills
# because we do not control their implementation.

# We do not ignore the config.json, detect.js or tests.js
# because we do control their implementation.

polyfills/_ArrayIterator/polyfill.js
polyfills/Array/of/polyfill.js
polyfills/Array/prototype/values/polyfill.js
polyfills/atob/polyfill.js
polyfills/AudioContext/polyfill.js
polyfills/fetch/polyfill.js
polyfills/Function/prototype/bind/polyfill.js
polyfills/HTMLPictureElement/polyfill.js
polyfills/IntersectionObserver/polyfill.js
polyfills/Intl/polyfill.js
polyfills/Intl/~locale/**/polyfill.js
polyfills/JSON/polyfill.js
polyfills/navigator/sendBeacon/polyfill.js
polyfills/MutationObserver/polyfill.js
polyfills/Promise/polyfill.js
polyfills/setImmediate/polyfill.js
polyfills/URL/polyfill.js
polyfills/UserTiming/polyfill.js
polyfills/WeakSet/polyfill.js
polyfills/~html5-elements/polyfill.js
tasks/**/node_modules
26 changes: 12 additions & 14 deletions .gitignore
@@ -1,25 +1,23 @@
.DS_Store
node_modules/
.vscode/
/npm-debug.log
/newrelic_agent.log
/polyfills/__dist
/polyfills/aliases.json
/test/results
/.env.json
/.env
/.service.pid
/.haikro-cache
/node-*
.DS_Store
/polyfills/HTMLPictureElement/polyfill.js
/polyfills/IntersectionObserver/polyfill.js
/polyfills/Intl/polyfill.js
/polyfills/Intl/~locale
npm-debug.log
/polyfills/__dist
/polyfills/aliases.json
/polyfills/Array/of/polyfill.js
/polyfills/Promise/polyfill.js
/polyfills/atob/polyfill.js
/polyfills/AudioContext/polyfill.js
/polyfills/~html5-elements/polyfill.js
/polyfills/HTMLPictureElement/polyfill.js
/polyfills/IntersectionObserver/polyfill.js
/polyfills/Intl/polyfill.js
/polyfills/Intl/~locale/**
/polyfills/JSON/polyfill.js
/polyfills/Promise/polyfill.js
/polyfills/URL/polyfill.js
/polyfills/UserTiming/polyfill.js
/polyfills/URL/polyfill.js
/polyfills/~html5-elements/polyfill.js
/test/results
53 changes: 0 additions & 53 deletions polyfills/Array/of/polyfill.js

This file was deleted.

54 changes: 0 additions & 54 deletions polyfills/AudioContext/polyfill.js

This file was deleted.

61 changes: 0 additions & 61 deletions polyfills/atob/polyfill.js

This file was deleted.

4 changes: 0 additions & 4 deletions polyfills/~html5-elements/polyfill.js

This file was deleted.

0 comments on commit 5b4a7fd

Please sign in to comment.