To be saved here
This file contains hidden or 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
| import { readdir, readlink, symlink, unlink } from "node:fs/promises"; | |
| import { basename, join } from "node:path"; | |
| const privateNextJsNodeModulesPath = "./standalone/.next/node_modules"; | |
| const privateNextJsNodeModulesDirectoryContent = await readdir( | |
| privateNextJsNodeModulesPath, | |
| ); |
This file contains hidden or 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
| set -x DOCKER_BUILDKIT 1 | |
| set -x COMPOSE_DOCKER_CLI_BUILD 1 | |
| set -x USER_ID (id -u) | |
| abbr --add d docker | |
| abbr --add dc docker compose |
This file contains hidden or 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
| import { z } from "zod"; | |
| test("should ignore the bars entries with the unknown type", () => { | |
| enum BarType { | |
| Big = "big", | |
| Small = "small", | |
| } | |
| const schema = z.object({ | |
| foo_id: z.string(), |
This file contains hidden or 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
| import SanityImage from "./SanityImage"; | |
| import { render, fireEvent } from "test/componentUtils"; | |
| describe("SanityImage", () => { | |
| it("render from an URL", () => { | |
| const { getByText, debug } = render(<SanityImage src="https://foo.fr/" />); | |
| debug(); | |
| expect(getByText("May 2, 2020 - May 6, 2020")).toBeInTheDocument(); |
This file contains hidden or 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
| { | |
| "polyfillFiles": [ | |
| "static/chunks/polyfills-5bc0b8d36c2b6304bade.js" | |
| ], | |
| "devFiles": [], | |
| "ampDevFiles": [], | |
| "lowPriorityFiles": [ | |
| "static/6jguHQCPoq8JMqVGIXI47/_buildManifest.js", | |
| "static/6jguHQCPoq8JMqVGIXI47/_ssgManifest.js" | |
| ], |
This file contains hidden or 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
| { | |
| "offer_id": "MON-TWIN-DOUBLE", | |
| "room_id": "MON-DOUBLE", | |
| "total_price": { | |
| "amount": "79.00", | |
| "currency": "EUR" | |
| }, | |
| "total_price_to_pay": { | |
| "amount": "85.00", | |
| "currency": "EUR" |
This file contains hidden or 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
| $ npm install --verbose gulp-uglifycss@1.0.7 | |
| npm info it worked if it ends with ok | |
| npm verb cli [ '/Users/spy-seth/.nvm/versions/node/v6.9.4/bin/node', | |
| npm verb cli '/Users/spy-seth/.nvm/versions/node/v6.9.4/bin/npm', | |
| npm verb cli 'install', | |
| npm verb cli '--verbose', | |
| npm verb cli 'gulp-uglifycss@1.0.7' ] | |
| npm info using npm@3.10.10 | |
| npm info using node@v6.9.4 | |
| npm verb get https://registry.npmjs.org/gulp-uglifycss not expired, no request |
This file contains hidden or 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
| /* @flow */ | |
| import postcss from 'postcss'; | |
| const ignoreMessage = postcss.plugin('postcss-plugin-ignore-warning', (opts) => { | |
| const patternToIgnores = opts || []; | |
| return (root, result) => { | |
| if (patternToIgnores.lenght === 0) { | |
| return; |
This file contains hidden or 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 () => { | |
| return 51; | |
| }; |
NewerOlder