Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
import React from 'react'; | |
import merge from 'lodash.merge'; | |
import { RedocStandalone } from 'redoc'; | |
import useThemeContext from '@theme/hooks/useThemeContext'; | |
import './styles.css'; | |
/** | |
* NOTE: Colors taken from `node_modules/infima/styles/common/dark-mode.css` | |
* and related files | |
*/ |
# tabc <profile name> do the profile change | |
function tabc() { | |
NAME=$1; if [ -z "$NAME" ]; then NAME="Default"; fi | |
# if you have trouble with this, change | |
# "Default" to the name of your default theme | |
echo -e "\033]50;SetProfile=$NAME\a" | |
} | |
# reset the terminal profile to Default when exit from the ssh session | |
function tab-reset() { |
# Author: Daniel Brandenburg | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
diff --git a/build/src/index.js b/build/src/index.js | |
index 7a3e8db5bc97f3786dc14bf8555721545534a952..00ef3fed50aeb28377b94ee43d1b068bbe82f57a 100644 | |
--- a/build/src/index.js | |
+++ b/build/src/index.js | |
@@ -37,7 +37,7 @@ const plugin = (schema, documents, config) => { | |
exports.plugin = plugin; | |
const validate = (schema, documents, config, outputFile) => __awaiter(void 0, void 0, void 0, function* () { | |
if ((0, path_1.extname)(outputFile) !== ".tsx") { | |
- throw new Error(`Plugin "react-apollo" requires extension to be ".tsx"!`); | |
+ throw new Error(`Plugin "apollo-next-ssr" requires extension to be ".tsx"!`); |
module.exports = { | |
plugins: [require.resolve('./sitePlugin')], | |
} |
/* eslint-disable global-require, import/no-extraneous-dependencies, @typescript-eslint/no-use-before-define */ | |
/** | |
* @see https://github.com/bcoe/c8/issues/376 | |
* @see https://github.com/tapjs/processinfo/blob/33c72e547139630cde35a4126bb4575ad7157065/lib/register-coverage.cjs | |
*/ | |
if (process.env.V8_COVERAGE) { | |
process.setSourceMapsEnabled(true); | |
const inspector = require('inspector'); | |
const session = new inspector.Session(); |