mirror of
https://github.com/MercuryWorkshop/scramjet.git
synced 2025-05-13 06:20:02 -04:00
update github workflow things
This commit is contained in:
parent
cbd3fcd718
commit
0f8b43fbee
4 changed files with 10 additions and 10 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -154,7 +154,7 @@ jobs:
|
|||
path: dist
|
||||
|
||||
- name: build statics
|
||||
run: bash buildstatic.sh
|
||||
run: bash ./ci/buildstatic.sh
|
||||
|
||||
- name: upload pages artifact
|
||||
uses: actions/upload-pages-artifact@v3
|
||||
|
|
16
pnpm-lock.yaml
generated
16
pnpm-lock.yaml
generated
|
@ -1469,8 +1469,8 @@ packages:
|
|||
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
is-core-module@2.16.0:
|
||||
resolution: {integrity: sha512-urTSINYfAYgcbLb0yDQ6egFm6h3Mo1DcF9EkyXSRjjzdHbsulg01qhwWuXdOoUBuTkbQ80KDboXa0vFJ+BDH+g==}
|
||||
is-core-module@2.16.1:
|
||||
resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
|
||||
engines: {node: '>= 0.4'}
|
||||
|
||||
is-docker@2.2.1:
|
||||
|
@ -1638,8 +1638,8 @@ packages:
|
|||
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
|
||||
engines: {node: '>= 0.6'}
|
||||
|
||||
memfs@4.15.0:
|
||||
resolution: {integrity: sha512-q9MmZXd2rRWHS6GU3WEm3HyiXZyyoA1DqdOhEq0lxPBmKb5S7IAOwX0RgUCwJfqjelDCySa5h8ujOy24LqsWcw==}
|
||||
memfs@4.15.1:
|
||||
resolution: {integrity: sha512-ufCzgFwiVnR6R9cCYuvwznJdhdYXEvFl0hpnM4cCtVaVkHuqBR+6fo2sqt1SSMdp+uiHw9GyPZr3OMM5tqjSmQ==}
|
||||
engines: {node: '>= 4.0.0'}
|
||||
|
||||
merge-descriptors@1.0.3:
|
||||
|
@ -4091,7 +4091,7 @@ snapshots:
|
|||
dependencies:
|
||||
binary-extensions: 2.3.0
|
||||
|
||||
is-core-module@2.16.0:
|
||||
is-core-module@2.16.1:
|
||||
dependencies:
|
||||
hasown: 2.0.2
|
||||
|
||||
|
@ -4228,7 +4228,7 @@ snapshots:
|
|||
|
||||
media-typer@0.3.0: {}
|
||||
|
||||
memfs@4.15.0:
|
||||
memfs@4.15.1:
|
||||
dependencies:
|
||||
'@jsonjoy.com/json-pack': 1.1.1(tslib@2.8.1)
|
||||
'@jsonjoy.com/util': 1.5.0(tslib@2.8.1)
|
||||
|
@ -4514,7 +4514,7 @@ snapshots:
|
|||
|
||||
resolve@1.22.10:
|
||||
dependencies:
|
||||
is-core-module: 2.16.0
|
||||
is-core-module: 2.16.1
|
||||
path-parse: 1.0.7
|
||||
supports-preserve-symlinks-flag: 1.0.0
|
||||
|
||||
|
@ -4949,7 +4949,7 @@ snapshots:
|
|||
webpack-dev-middleware@7.4.2(webpack@5.97.1):
|
||||
dependencies:
|
||||
colorette: 2.0.19
|
||||
memfs: 4.15.0
|
||||
memfs: 4.15.1
|
||||
mime-types: 2.1.35
|
||||
on-finished: 2.4.1
|
||||
range-parser: 1.2.1
|
||||
|
|
|
@ -243,7 +243,7 @@ export class ScramjetClient {
|
|||
if (!sframe) {
|
||||
// we're in a subframe, recurse upward until we find one
|
||||
let currentwin = this.global.window;
|
||||
while (currentwin.parent != currentwin) {
|
||||
while (currentwin.parent !== currentwin) {
|
||||
if (!currentwin.frameElement) return null; // ??
|
||||
if (currentwin.frameElement && currentwin.frameElement[SCRAMJETFRAME]) {
|
||||
return currentwin.frameElement[SCRAMJETFRAME];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue