-
Notifications
You must be signed in to change notification settings - Fork 0
/
component---src-pages-page-2-js-5f4351749489750e9351.js.map
1 lines (1 loc) · 8.44 KB
/
component---src-pages-page-2-js-5f4351749489750e9351.js.map
1
{"version":3,"sources":["webpack:///component---src-pages-page-2-js-5f4351749489750e9351.js","webpack:///./~/hoist-non-react-statics/index.js?779b","webpack:///./src/pages/page-2.js"],"names":["webpackJsonp","./node_modules/hoist-non-react-statics/index.js","module","exports","REACT_STATICS","childContextTypes","contextTypes","defaultProps","displayName","getDefaultProps","mixins","propTypes","type","KNOWN_STATICS","name","length","prototype","caller","arguments","arity","isGetOwnPropertySymbolsAvailable","Object","getOwnPropertySymbols","targetComponent","sourceComponent","customStatics","keys","getOwnPropertyNames","concat","i","error","./node_modules/babel-loader/lib/index.js?{\"plugins\":[\"/Users/superoo7/Desktop/gatsby/test/gatsby-site/node_modules/gatsby/dist/utils/babel-plugin-extract-graphql.js\",\"/Users/superoo7/Desktop/gatsby/test/gatsby-site/node_modules/babel-plugin-add-module-exports/lib/index.js\",\"/Users/superoo7/Desktop/gatsby/test/gatsby-site/node_modules/babel-plugin-transform-object-assign/lib/index.js\"],\"presets\":[[\"/Users/superoo7/Desktop/gatsby/test/gatsby-site/node_modules/babel-preset-env/lib/index.js\",{\"loose\":true,\"uglify\":true,\"modules\":\"commonjs\",\"targets\":{\"browsers\":[\"> 1%\",\"last 2 versions\",\"IE >= 9\"]},\"exclude\":[\"transform-regenerator\",\"transform-es2015-typeof-symbol\"]}],\"/Users/superoo7/Desktop/gatsby/test/gatsby-site/node_modules/babel-preset-stage-0/lib/index.js\",\"/Users/superoo7/Desktop/gatsby/test/gatsby-site/node_modules/babel-preset-react/lib/index.js\"],\"cacheDirectory\":true}!./src/pages/page-2.js","__webpack_require__","_interopRequireDefault","obj","__esModule","default","_react","_react2","_gatsbyLink","_gatsbyLink2","SecondPage","createElement","to"],"mappings":"AAAAA,cAAc,qBAERC,kDACA,SAAUC,EAAQC,GCCxB,YAEA,IAAAC,IACAC,mBAAA,EACAC,cAAA,EACAC,cAAA,EACAC,aAAA,EACAC,iBAAA,EACAC,QAAA,EACAC,WAAA,EACAC,MAAA,GAGAC,GACAC,MAAA,EACAC,QAAA,EACAC,WAAA,EACAC,QAAA,EACAC,WAAA,EACAC,OAAA,GAGAC,EAAA,kBAAAC,QAAAC,qBAEApB,GAAAC,QAAA,SAAAoB,EAAAC,EAAAC,GACA,mBAAAD,GAAA,CACA,GAAAE,GAAAL,OAAAM,oBAAAH,EAGAJ,KACAM,IAAAE,OAAAP,OAAAC,sBAAAE,IAGA,QAAAK,GAAA,EAAuBA,EAAAH,EAAAX,SAAiBc,EACxC,KAAAzB,EAAAsB,EAAAG,KAAAhB,EAAAa,EAAAG,KAAAJ,KAAAC,EAAAG,KACA,IACAN,EAAAG,EAAAG,IAAAL,EAAAE,EAAAG,IACiB,MAAAC,KAOjB,MAAAP,KDWMQ,i5BACA,SAAU7B,EAAQC,EAAS6B,GAEhC,YAYA,SAASC,GAAuBC,GAAO,MAAOA,IAAOA,EAAIC,WAAaD,GAAQE,QAASF,GAVvF/B,EAAQgC,YAAa,CEhEtB,IAAAE,GAAAL,EAAA,iCFoEKM,EAAUL,EAAuBI,GEnEtCE,EAAAP,EAAA,uCFuEKQ,EAAeP,EAAuBM,GErErCE,EAAa,iBACjBH,GAAAF,QAAAM,cAAA,WACEJ,EAAAF,QAAAM,cAAA,uBACAJ,EAAAF,QAAAM,cAAA,8BACAJ,EAAAF,QAAAM,cAAAF,EAAAJ,SAAMO,GAAG,KAAT,4BF2FHxC,GAAQiC,QExFMK,EFyFdvC,EAAOC,QAAUA,EAAiB","file":"component---src-pages-page-2-js-5f4351749489750e9351.js","sourcesContent":["webpackJsonp([14322157069435689000],{\n\n/***/ \"./node_modules/hoist-non-react-statics/index.js\":\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2015, Yahoo! Inc.\n\t * Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.\n\t */\n\t'use strict';\n\t\n\tvar REACT_STATICS = {\n\t childContextTypes: true,\n\t contextTypes: true,\n\t defaultProps: true,\n\t displayName: true,\n\t getDefaultProps: true,\n\t mixins: true,\n\t propTypes: true,\n\t type: true\n\t};\n\t\n\tvar KNOWN_STATICS = {\n\t name: true,\n\t length: true,\n\t prototype: true,\n\t caller: true,\n\t arguments: true,\n\t arity: true\n\t};\n\t\n\tvar isGetOwnPropertySymbolsAvailable = typeof Object.getOwnPropertySymbols === 'function';\n\t\n\tmodule.exports = function hoistNonReactStatics(targetComponent, sourceComponent, customStatics) {\n\t if (typeof sourceComponent !== 'string') { // don't hoist over string (html) components\n\t var keys = Object.getOwnPropertyNames(sourceComponent);\n\t\n\t /* istanbul ignore else */\n\t if (isGetOwnPropertySymbolsAvailable) {\n\t keys = keys.concat(Object.getOwnPropertySymbols(sourceComponent));\n\t }\n\t\n\t for (var i = 0; i < keys.length; ++i) {\n\t if (!REACT_STATICS[keys[i]] && !KNOWN_STATICS[keys[i]] && (!customStatics || !customStatics[keys[i]])) {\n\t try {\n\t targetComponent[keys[i]] = sourceComponent[keys[i]];\n\t } catch (error) {\n\t\n\t }\n\t }\n\t }\n\t }\n\t\n\t return targetComponent;\n\t};\n\n\n/***/ }),\n\n/***/ \"./node_modules/babel-loader/lib/index.js?{\\\"plugins\\\":[\\\"/Users/superoo7/Desktop/gatsby/test/gatsby-site/node_modules/gatsby/dist/utils/babel-plugin-extract-graphql.js\\\",\\\"/Users/superoo7/Desktop/gatsby/test/gatsby-site/node_modules/babel-plugin-add-module-exports/lib/index.js\\\",\\\"/Users/superoo7/Desktop/gatsby/test/gatsby-site/node_modules/babel-plugin-transform-object-assign/lib/index.js\\\"],\\\"presets\\\":[[\\\"/Users/superoo7/Desktop/gatsby/test/gatsby-site/node_modules/babel-preset-env/lib/index.js\\\",{\\\"loose\\\":true,\\\"uglify\\\":true,\\\"modules\\\":\\\"commonjs\\\",\\\"targets\\\":{\\\"browsers\\\":[\\\"> 1%\\\",\\\"last 2 versions\\\",\\\"IE >= 9\\\"]},\\\"exclude\\\":[\\\"transform-regenerator\\\",\\\"transform-es2015-typeof-symbol\\\"]}],\\\"/Users/superoo7/Desktop/gatsby/test/gatsby-site/node_modules/babel-preset-stage-0/lib/index.js\\\",\\\"/Users/superoo7/Desktop/gatsby/test/gatsby-site/node_modules/babel-preset-react/lib/index.js\\\"],\\\"cacheDirectory\\\":true}!./src/pages/page-2.js\":\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\texports.__esModule = true;\n\t\n\tvar _react = __webpack_require__(\"./node_modules/react/react.js\");\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _gatsbyLink = __webpack_require__(\"./node_modules/gatsby-link/index.js\");\n\t\n\tvar _gatsbyLink2 = _interopRequireDefault(_gatsbyLink);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar SecondPage = function SecondPage() {\n\t return _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'h1',\n\t null,\n\t 'Hi people'\n\t ),\n\t _react2.default.createElement(\n\t 'p',\n\t null,\n\t 'Welcome to page 2'\n\t ),\n\t _react2.default.createElement(\n\t _gatsbyLink2.default,\n\t { to: '/' },\n\t 'Go back to the homepage'\n\t )\n\t );\n\t};\n\t\n\texports.default = SecondPage;\n\tmodule.exports = exports['default'];\n\n/***/ })\n\n});\n\n\n// WEBPACK FOOTER //\n// component---src-pages-page-2-js-5f4351749489750e9351.js","/**\n * Copyright 2015, Yahoo! Inc.\n * Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.\n */\n'use strict';\n\nvar REACT_STATICS = {\n childContextTypes: true,\n contextTypes: true,\n defaultProps: true,\n displayName: true,\n getDefaultProps: true,\n mixins: true,\n propTypes: true,\n type: true\n};\n\nvar KNOWN_STATICS = {\n name: true,\n length: true,\n prototype: true,\n caller: true,\n arguments: true,\n arity: true\n};\n\nvar isGetOwnPropertySymbolsAvailable = typeof Object.getOwnPropertySymbols === 'function';\n\nmodule.exports = function hoistNonReactStatics(targetComponent, sourceComponent, customStatics) {\n if (typeof sourceComponent !== 'string') { // don't hoist over string (html) components\n var keys = Object.getOwnPropertyNames(sourceComponent);\n\n /* istanbul ignore else */\n if (isGetOwnPropertySymbolsAvailable) {\n keys = keys.concat(Object.getOwnPropertySymbols(sourceComponent));\n }\n\n for (var i = 0; i < keys.length; ++i) {\n if (!REACT_STATICS[keys[i]] && !KNOWN_STATICS[keys[i]] && (!customStatics || !customStatics[keys[i]])) {\n try {\n targetComponent[keys[i]] = sourceComponent[keys[i]];\n } catch (error) {\n\n }\n }\n }\n }\n\n return targetComponent;\n};\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// ./~/hoist-non-react-statics/index.js\n// module id = ./node_modules/hoist-non-react-statics/index.js\n// module chunks = 2345137460201621000 14322157069435689000 15178676390636814000","import React from 'react'\nimport Link from 'gatsby-link'\n\nconst SecondPage = () =>\n <div>\n <h1>Hi people</h1>\n <p>Welcome to page 2</p>\n <Link to=\"/\">Go back to the homepage</Link>\n </div>\n\nexport default SecondPage\n\n\n\n// WEBPACK FOOTER //\n// ./src/pages/page-2.js"],"sourceRoot":""}