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
diff --git a/node_modules/@remix-run/dev/dist/compiler/compileBrowser.js b/node_modules/@remix-run/dev/dist/compiler/compileBrowser.js | |
index 517068e..2846c2a 100644 | |
--- a/node_modules/@remix-run/dev/dist/compiler/compileBrowser.js | |
+++ b/node_modules/@remix-run/dev/dist/compiler/compileBrowser.js | |
@@ -87,6 +87,7 @@ const createEsbuildConfig = (config, options) => { | |
entryPoints, | |
outdir: config.assetsBuildDirectory, | |
platform: "browser", | |
+ target: ["safari12.1"] , | |
format: "esm", |
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
<html> | |
<head> | |
<title>Mandelbrot Set</title> | |
</head> | |
<body> | |
<canvas id="mandelbrot" width="800" height="600"></canvas> | |
<script> | |
const canvas = document.getElementById('mandelbrot'); |
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
diff --git a/node_modules/@remix-run/react/dist/components.js b/node_modules/@remix-run/react/dist/components.js | |
index f947287..e7cc1f5 100644 | |
--- a/node_modules/@remix-run/react/dist/components.js | |
+++ b/node_modules/@remix-run/react/dist/components.js | |
@@ -773,7 +773,7 @@ method = "get") { | |
let { | |
id | |
} = useRemixRouteContext(); | |
- let resolvedPath = reactRouterDom.useResolvedPath(action ?? "."); // Previously we set the default action to ".". The problem with this is that | |
+ let resolvedPath = reactRouterDom.useResolvedPath(action ? action : "."); // Previously we set the default action to ".". The problem with this is that |
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
// extensions.json | |
{ | |
"recommendations": [ | |
"lacroixdavid1.vscode-format-context-menu", | |
"bmewburn.vscode-intelephense-client", | |
"EditorConfig.EditorConfig" | |
] | |
} | |
// settings.json | |
{ |
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
fix(remix-dev): add ability to use tsconfig `paths` aliases other than `~` test #4883 | |
Summary | |
Jobs | |
build (ubuntu-latest) | |
build (ubuntu-latest) | |
Started 11m 51s ago | |
Search logs | |
1s | |
Current runner version: '2.288.1' | |
Operating System |
Issues on @remix-run/remix that can be closed
Can be closed:
- remix-run/remix#19 (old /dashboard/ stuff)
- remix-run/remix#28 (not applicable anymore)
- remix-run/remix#33 (we now have actions)
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
<?php | |
namespace console\controllers; | |
use Yii; | |
use yii\console\Controller; | |
/** | |
* I needed to migrate from files-based RBAC to db-based RBAC, here's how I've done it | |
* |
This document is intended for an audience already familiar with Yii2
Yii 3 is the second major rewrite of the Yii framework.
Originally started in the 2.1 branch, it was later decided to switch to the 3.X series because of all the backward compatibility breakage. Starting with 3.0, Yii will follow the Sementic Versionning.
<VirtualHost *:80>
Define SITE_BASE ${SERVER_BASE}/customer/example.com
ServerName example.com
ProxyRequests Off
ProxyPass / http://example.com/
ProxyPassReverse / http://example.com/
LogLevel warn
NewerOlder