Compare commits
5 Commits
b8e861cf9e
...
renovate/a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
19b04c33e6 | ||
|
|
3d2da0a4bc | ||
|
|
a17441cda3 | ||
|
|
c4f5835424 | ||
|
|
7773c3b808 |
@@ -48,7 +48,7 @@ jobs:
|
||||
|
||||
release:
|
||||
needs: build
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: archlinux
|
||||
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
|
||||
environment:
|
||||
name: production
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import Meta from 'gi://Meta';
|
||||
import {Extension, ExtensionMetadata} from 'resource:///org/gnome/shell/extensions/extension.js';
|
||||
import {Extension} from 'resource:///org/gnome/shell/extensions/extension.js';
|
||||
import * as Main from 'resource:///org/gnome/shell/ui/main.js';
|
||||
import Gio from 'gi://Gio';
|
||||
import Shell from 'gi://Shell';
|
||||
@@ -11,7 +11,7 @@ export default class aerospike extends Extension {
|
||||
keyBindings: Map<string, number>;
|
||||
windowManager: WindowManager;
|
||||
|
||||
constructor(metadata: ExtensionMetadata) {
|
||||
constructor(metadata: ConstructorParameters<typeof Extension>[0]) {
|
||||
super(metadata);
|
||||
this.settings = this.getSettings('org.gnome.shell.extensions.aerospike');
|
||||
this.keyBindings = new Map();
|
||||
|
||||
2
justfile
2
justfile
@@ -8,7 +8,7 @@ packages:
|
||||
|
||||
build: packages && build-schemas
|
||||
rm -rf dist/*
|
||||
tsc
|
||||
pnpm exec tsc
|
||||
cp metadata.json dist/
|
||||
cp stylesheet.css dist/
|
||||
mkdir -p dist/schemas
|
||||
|
||||
@@ -2,5 +2,11 @@
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:recommended"
|
||||
],
|
||||
"packageRules": [
|
||||
{
|
||||
"matchPackageNames": ["actions/upload-artifact", "actions/download-artifact"],
|
||||
"allowedVersions": "<4"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user