├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── babel-helpers.js ├── babel-helpers ├── asyncGenerator.js ├── asyncGeneratorDelegate.js ├── asyncIterator.js ├── asyncToGenerator.js ├── classCallCheck.js ├── createClass.js ├── defaults.js ├── defineEnumerableProperties.js ├── defineProperty.js ├── extends.js ├── get.js ├── inherits.js ├── instanceof.js ├── interopRequireDefault.js ├── interopRequireWildcard.js ├── jsx.js ├── newArrowCheck.js ├── objectDestructuringEmpty.js ├── objectWithoutProperties.js ├── possibleConstructorReturn.js ├── selfGlobal.js ├── set.js ├── slicedToArray.js ├── slicedToArrayLoose.js ├── taggedTemplateLiteral.js ├── taggedTemplateLiteralLoose.js ├── temporalRef.js ├── temporalUndefined.js ├── toArray.js ├── toConsumableArray.js └── typeof.js ├── package.json ├── plugin-babel.js ├── regenerator-runtime.js ├── systemjs-babel-browser.js ├── systemjs-babel-node.js └── test ├── index.js ├── manual.html ├── testing-code.js └── testing-dep.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | jspm_packages 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/README.md -------------------------------------------------------------------------------- /babel-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers.js -------------------------------------------------------------------------------- /babel-helpers/asyncGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/asyncGenerator.js -------------------------------------------------------------------------------- /babel-helpers/asyncGeneratorDelegate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/asyncGeneratorDelegate.js -------------------------------------------------------------------------------- /babel-helpers/asyncIterator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/asyncIterator.js -------------------------------------------------------------------------------- /babel-helpers/asyncToGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/asyncToGenerator.js -------------------------------------------------------------------------------- /babel-helpers/classCallCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/classCallCheck.js -------------------------------------------------------------------------------- /babel-helpers/createClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/createClass.js -------------------------------------------------------------------------------- /babel-helpers/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/defaults.js -------------------------------------------------------------------------------- /babel-helpers/defineEnumerableProperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/defineEnumerableProperties.js -------------------------------------------------------------------------------- /babel-helpers/defineProperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/defineProperty.js -------------------------------------------------------------------------------- /babel-helpers/extends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/extends.js -------------------------------------------------------------------------------- /babel-helpers/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/get.js -------------------------------------------------------------------------------- /babel-helpers/inherits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/inherits.js -------------------------------------------------------------------------------- /babel-helpers/instanceof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/instanceof.js -------------------------------------------------------------------------------- /babel-helpers/interopRequireDefault.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/interopRequireDefault.js -------------------------------------------------------------------------------- /babel-helpers/interopRequireWildcard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/interopRequireWildcard.js -------------------------------------------------------------------------------- /babel-helpers/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/jsx.js -------------------------------------------------------------------------------- /babel-helpers/newArrowCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/newArrowCheck.js -------------------------------------------------------------------------------- /babel-helpers/objectDestructuringEmpty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/objectDestructuringEmpty.js -------------------------------------------------------------------------------- /babel-helpers/objectWithoutProperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/objectWithoutProperties.js -------------------------------------------------------------------------------- /babel-helpers/possibleConstructorReturn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/possibleConstructorReturn.js -------------------------------------------------------------------------------- /babel-helpers/selfGlobal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/selfGlobal.js -------------------------------------------------------------------------------- /babel-helpers/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/set.js -------------------------------------------------------------------------------- /babel-helpers/slicedToArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/slicedToArray.js -------------------------------------------------------------------------------- /babel-helpers/slicedToArrayLoose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/slicedToArrayLoose.js -------------------------------------------------------------------------------- /babel-helpers/taggedTemplateLiteral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/taggedTemplateLiteral.js -------------------------------------------------------------------------------- /babel-helpers/taggedTemplateLiteralLoose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/taggedTemplateLiteralLoose.js -------------------------------------------------------------------------------- /babel-helpers/temporalRef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/temporalRef.js -------------------------------------------------------------------------------- /babel-helpers/temporalUndefined.js: -------------------------------------------------------------------------------- 1 | export default {}; -------------------------------------------------------------------------------- /babel-helpers/toArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/toArray.js -------------------------------------------------------------------------------- /babel-helpers/toConsumableArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/toConsumableArray.js -------------------------------------------------------------------------------- /babel-helpers/typeof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/babel-helpers/typeof.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/package.json -------------------------------------------------------------------------------- /plugin-babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/plugin-babel.js -------------------------------------------------------------------------------- /regenerator-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/regenerator-runtime.js -------------------------------------------------------------------------------- /systemjs-babel-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/systemjs-babel-browser.js -------------------------------------------------------------------------------- /systemjs-babel-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/systemjs-babel-node.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/test/index.js -------------------------------------------------------------------------------- /test/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/test/manual.html -------------------------------------------------------------------------------- /test/testing-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/systemjs/plugin-babel/HEAD/test/testing-code.js -------------------------------------------------------------------------------- /test/testing-dep.js: -------------------------------------------------------------------------------- 1 | export var p = 5; 2 | --------------------------------------------------------------------------------