Last active
February 25, 2016 10:37
-
-
Save srounce/cb12a1af6c3b8dd848da to your computer and use it in GitHub Desktop.
SO-GPX-BabelWebpack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"sourceMaps": "inline", | |
"presets": ["es2015"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export viewportSize from "./viewportSize"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function viewportSize (state = {}) { | |
return state; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
babel a.js b.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
exports.viewportSize = undefined; | |
var _viewportSize2 = require("./viewportSize"); | |
var _viewportSize3 = _interopRequireDefault(_viewportSize2); | |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | |
exports.viewportSize = _viewportSize3.default; | |
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImEuanMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7OztRQUFPIiwiZmlsZSI6ImEuanMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgdmlld3BvcnRTaXplIGZyb20gXCIuL3ZpZXdwb3J0U2l6ZVwiO1xuIl19 | |
"use strict"; | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
exports.default = viewportSize; | |
function viewportSize() { | |
var state = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0]; | |
return state; | |
} | |
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImIuanMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7a0JBQXdCO0FBQVQsU0FBUyxZQUFULEdBQW1DO01BQVosOERBQVEsa0JBQUk7O0FBQ2hELFNBQU8sS0FBUCxDQURnRDtDQUFuQyIsImZpbGUiOiJiLmpzIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlZmF1bHQgZnVuY3Rpb24gdmlld3BvcnRTaXplIChzdGF0ZSA9IHt9KSB7XG4gIHJldHVybiBzdGF0ZTtcbn1cbiJdfQ== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"devDependencies": { | |
"babel-cli": "^6.4.5", | |
"babel-core": "^6.5.1", | |
"babel-preset-es2015": "^6.3.13" | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment