Deploy benchmarks

This commit is contained in:
Nicolas Gallagher
2023-01-25 14:07:16 -08:00
parent eb6bd284e3
commit c89f3335ae
116 changed files with 19027 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
{
"polyfillFiles": [
"static/chunks/polyfills.js"
],
"devFiles": [
"static/chunks/react-refresh.js"
],
"ampDevFiles": [
"static/chunks/webpack.js",
"static/chunks/amp.js"
],
"lowPriorityFiles": [
"static/development/_buildManifest.js",
"static/development/_ssgManifest.js"
],
"rootMainFiles": [],
"pages": {
"/": [
"static/chunks/webpack.js",
"static/chunks/main.js",
"static/chunks/pages/index.js"
],
"/_app": [
"static/chunks/webpack.js",
"static/chunks/main.js",
"static/chunks/pages/_app.js"
],
"/_error": [
"static/chunks/webpack.js",
"static/chunks/main.js",
"static/chunks/pages/_error.js"
],
"/scroll-view": [
"static/chunks/webpack.js",
"static/chunks/main.js",
"static/chunks/pages/scroll-view.js"
]
},
"ampFirstPages": []
}

View File

@@ -0,0 +1 @@
{"version":1,"cacheKey":"6350f758e24d1ba8f16eae5efa3c5648378d1d3223755f21d9a408a2ed3432d0","files":["../../../node_modules/next/dist/server/next-server.js"]}

View File

@@ -0,0 +1 @@
{"type": "commonjs"}

View File

@@ -0,0 +1,8 @@
{
"../../../node_modules/next/dist/client/index.js -> ../pages/_error": {
"id": "../../../node_modules/next/dist/client/index.js -> ../pages/_error",
"files": [
"static/chunks/node_modules_next_dist_pages__error_js.js"
]
}
}

View File

@@ -0,0 +1,33 @@
self.__BUILD_MANIFEST = {
polyfillFiles: ['static/chunks/polyfills.js'],
devFiles: ['static/chunks/react-refresh.js'],
ampDevFiles: ['static/chunks/webpack.js', 'static/chunks/amp.js'],
lowPriorityFiles: [
'static/development/_buildManifest.js',
'static/development/_ssgManifest.js'
],
rootMainFiles: [],
pages: {
'/': [
'static/chunks/webpack.js',
'static/chunks/main.js',
'static/chunks/pages/index.js'
],
'/_app': [
'static/chunks/webpack.js',
'static/chunks/main.js',
'static/chunks/pages/_app.js'
],
'/_error': [
'static/chunks/webpack.js',
'static/chunks/main.js',
'static/chunks/pages/_error.js'
],
'/scroll-view': [
'static/chunks/webpack.js',
'static/chunks/main.js',
'static/chunks/pages/scroll-view.js'
]
},
ampFirstPages: []
};

View File

@@ -0,0 +1,6 @@
{
"sortedMiddleware": [],
"middleware": {},
"functions": {},
"version": 1
}

View File

@@ -0,0 +1,6 @@
self.__REACT_LOADABLE_MANIFEST = {
'../../../node_modules/next/dist/client/index.js -> ../pages/_error': {
id: '../../../node_modules/next/dist/client/index.js -> ../pages/_error',
files: ['static/chunks/node_modules_next_dist_pages__error_js.js']
}
};

View File

@@ -0,0 +1,7 @@
{
"/_app": "pages/_app.js",
"/_document": "pages/_document.js",
"/_error": "pages/_error.js",
"/": "pages/index.js",
"/scroll-view": "pages/scroll-view.js"
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,219 @@
/*
* ATTENTION: An "eval-source-map" devtool has been used.
* This devtool is neither made for production nor for readable output files.
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
* or disable the default devtool with "devtool: false".
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
*/
/******/ (() => {
// webpackBootstrap
/******/ 'use strict';
/******/ var __webpack_modules__ = {};
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/
}
/******/ // Create a new module (and put it into the cache)
/******/ var module = (__webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/
});
/******/
/******/ // Execute the module function
/******/ var threw = true;
/******/ try {
/******/ __webpack_modules__[moduleId](
module,
module.exports,
__webpack_require__
);
/******/ threw = false;
/******/
} finally {
/******/ if (threw) delete __webpack_module_cache__[moduleId];
/******/
}
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/
}
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = __webpack_modules__;
/******/
/************************************************************************/
/******/ /* webpack/runtime/compat get default export */
/******/ (() => {
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = (module) => {
/******/ var getter =
module && module.__esModule
? /******/ () => module['default']
: /******/ () => module;
/******/ __webpack_require__.d(getter, { a: getter });
/******/ return getter;
/******/
};
/******/
})();
/******/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for (var key in definition) {
/******/ if (
__webpack_require__.o(definition, key) &&
!__webpack_require__.o(exports, key)
) {
/******/ Object.defineProperty(exports, key, {
enumerable: true,
get: definition[key]
});
/******/
}
/******/
}
/******/
};
/******/
})();
/******/
/******/ /* webpack/runtime/ensure chunk */
/******/ (() => {
/******/ __webpack_require__.f = {};
/******/ // This file contains only the entry chunk.
/******/ // The chunk loading function for additional chunks
/******/ __webpack_require__.e = (chunkId) => {
/******/ return Promise.all(
Object.keys(__webpack_require__.f).reduce((promises, key) => {
/******/ __webpack_require__.f[key](chunkId, promises);
/******/ return promises;
/******/
}, [])
);
/******/
};
/******/
})();
/******/
/******/ /* webpack/runtime/get javascript chunk filename */
/******/ (() => {
/******/ // This function allow to reference async chunks and sibling chunks for the entrypoint
/******/ __webpack_require__.u = (chunkId) => {
/******/ // return url for filenames based on template
/******/ return undefined;
/******/
};
/******/
})();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) =>
Object.prototype.hasOwnProperty.call(obj, prop);
/******/
})();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if (typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, {
value: 'Module'
});
/******/
}
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/
};
/******/
})();
/******/
/******/ /* webpack/runtime/startup entrypoint */
/******/ (() => {
/******/ __webpack_require__.X = (result, chunkIds, fn) => {
/******/ // arguments: chunkIds, moduleId are deprecated
/******/ var moduleId = chunkIds;
/******/ if (!fn)
(chunkIds = result),
(fn = () => __webpack_require__((__webpack_require__.s = moduleId)));
/******/ chunkIds.map(__webpack_require__.e, __webpack_require__);
/******/ var r = fn();
/******/ return r === undefined ? result : r;
/******/
};
/******/
})();
/******/
/******/ /* webpack/runtime/require chunk loading */
/******/ (() => {
/******/ // no baseURI
/******/
/******/ // object to store loaded chunks
/******/ // "1" means "loaded", otherwise not loaded yet
/******/ var installedChunks = {
/******/ 'webpack-runtime': 1
/******/
};
/******/
/******/ // no on chunks loaded
/******/
/******/ var installChunk = (chunk) => {
/******/ var moreModules = chunk.modules,
chunkIds = chunk.ids,
runtime = chunk.runtime;
/******/ for (var moduleId in moreModules) {
/******/ if (__webpack_require__.o(moreModules, moduleId)) {
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
/******/
}
/******/
}
/******/ if (runtime) runtime(__webpack_require__);
/******/ for (var i = 0; i < chunkIds.length; i++)
/******/ installedChunks[chunkIds[i]] = 1;
/******/
/******/
};
/******/
/******/ // require() chunk loading for javascript
/******/ __webpack_require__.f.require = (chunkId, promises) => {
/******/ // "1" is the signal for "already loaded"
/******/ if (!installedChunks[chunkId]) {
/******/ if ('webpack-runtime' != chunkId) {
/******/ installChunk(require('./' + __webpack_require__.u(chunkId)));
/******/
} else installedChunks[chunkId] = 1;
/******/
}
/******/
};
/******/
/******/ module.exports = __webpack_require__;
/******/ __webpack_require__.C = installChunk;
/******/
/******/ // no HMR
/******/
/******/ // no HMR manifest
/******/
})();
/******/
/************************************************************************/
/******/
/******/
/******/
})();

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More