This file contains 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
command_args: "bazel-out/host/bin/external/npm/rollup/bin/rollup.sh" | |
command_args: "index=bazel-out/k8-fastbuild/bin/npm/_react__entry_point.js" | |
command_args: "--output.dir" | |
command_args: "bazel-out/k8-fastbuild/bin/npm/react__bundle" | |
command_args: "--format" | |
command_args: "system" | |
command_args: "--silent" | |
command_args: "--config" |
This file contains 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
apiVersion: v2 | |
publisher: cdr | |
name: code-server | |
version: 3.4.1 | |
type: Che Editor | |
displayName: code-server | |
title: Visual Studio Code - Web (code-server) | |
description: An open source distribution of Visual Studio Code as a cloud IDE | |
icon: https://raw.githubusercontent.com/sr229/discord-open-source/master/logos/code-server.svg | |
category: Editor |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
</head> | |
<body> | |
<span id="test"></span> | |
<p> | |
Click on the buttons below to use 'n' number of children in the inline container. | |
<br /> | |
On my test device, 20-23 children made the CPU spike |
This file contains 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
#!/bin/bash | |
NPM_COMMAND=$1 | |
STAGED_FILE=$2 | |
IS_PARTIALLY_STAGED=$(git diff --name-only "$STAGED_FILE") | |
if [[ "$IS_PARTIALLY_STAGED" != "" ]]; | |
then | |
# If the file is partially changed, we need get the hash so we can see if it changed later | |
PRE_LINT_HASH=$(git hash-object "$STAGED_FILE") |
This file contains 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
/** | |
* This hook overrides a function check at runtime. Currently, cordova-android 7+ incorrectly detects that we are using | |
* an eclipse style project. This causes a lot of plugins to fail at install time due to paths actually being setup | |
* for an Android Studio project. Some plugins choose to install things into 'platforms/android/libs' which makes | |
* this original function assume it is an ecplise project. | |
*/ | |
module.exports = function(context) { | |
if (context.opts.cordova.platforms.indexOf('android') < 0) { | |
return; | |
} |