Compare commits

...

2 Commits

Author SHA1 Message Date
Sebastian McKenzie
a0e500de6c v1.11.12 2014-11-11 13:14:31 +11:00
Sebastian McKenzie
bf8d9801ce rename browserified polyfill to browser-polyfill - fixes #140 2014-11-11 13:13:10 +11:00
5 changed files with 6 additions and 5 deletions

2
.gitignore vendored
View File

@@ -6,7 +6,7 @@ test/tmp
/templates.json
/tests.json
/browser.js
/polyfill.js
/browser-polyfill.js
/runtime.js
coverage
dist

View File

@@ -66,7 +66,7 @@ publish:
make build
cp dist/6to5.min.js browser.js
cp dist/polyfill.min.js polyfill.js
cp dist/polyfill.min.js browser-polyfill.js
cp dist/runtime.min.js runtime.js
node bin/cache-templates

View File

@@ -346,8 +346,8 @@ require("6to5/polyfill");
### Browser
Available from the `polyfill.js` file within the 6to5 directory of an npm
release.
Available from the `browser-polyfill.js` file within the 6to5 directory of an
npm release.
## Optional runtime

View File

@@ -1,7 +1,7 @@
{
"name": "6to5",
"description": "Turn ES6 code into readable vanilla ES5 with source maps",
"version": "1.11.11",
"version": "1.11.12",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://github.com/6to5/6to5",
"repository": {

1
polyfill.js Normal file
View File

@@ -0,0 +1 @@
module.exports = require("./lib/6to5/polyfill");