From 618c8c4dd7ddc8007e5c697110cf7e49aa7d7b37 Mon Sep 17 00:00:00 2001 From: yann300 Date: Mon, 27 Sep 2021 14:28:20 +0200 Subject: [PATCH] use package.json version 1 --- .circleci/config.yml | 1 + apps/remix-ide-e2e/src/types/index.d.ts | 6 +- libs/remix-analyzer/package.json | 2 +- libs/remix-debug/package.json | 2 +- libs/remix-ui/plugin-manager/src/types.d.ts | 90 ++++++++++----------- 5 files changed, 51 insertions(+), 50 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a0de17047f..32468c745b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -428,3 +428,4 @@ workflows: filters: branches: only: remix_beta + \ No newline at end of file diff --git a/apps/remix-ide-e2e/src/types/index.d.ts b/apps/remix-ide-e2e/src/types/index.d.ts index d195c8cf2a..55091bc0a8 100644 --- a/apps/remix-ide-e2e/src/types/index.d.ts +++ b/apps/remix-ide-e2e/src/types/index.d.ts @@ -1,8 +1,8 @@ // Merge custom command types with nightwatch types -import { NightwatchBrowser, NightwatchBrowser, NightwatchBrowser } from "nightwatch"; +import { NightwatchBrowser } from 'nightwatch' -declare module "nightwatch" { +declare module 'nightwatch' { export interface NightwatchCustomCommands { clickLaunchIcon(icon: string): NightwatchBrowser, switchBrowserTab(index: number): NightwatchBrowser, @@ -90,4 +90,4 @@ declare module "nightwatch" { } export type NightwatchCheckVariableDebugValue = NightwatchTestFunctionExpectedInput -} \ No newline at end of file +} diff --git a/libs/remix-analyzer/package.json b/libs/remix-analyzer/package.json index 7e23ef67c8..9938a7b3d3 100644 --- a/libs/remix-analyzer/package.json +++ b/libs/remix-analyzer/package.json @@ -22,7 +22,7 @@ "@ethereumjs/block": "^3.4.0", "@ethereumjs/tx": "^3.3.0", "@ethereumjs/vm": "^5.5.0", - "@remix-project/remix-astwalker": "^0.0.26", + "@remix-project/remix-astwalker": "^0.0.37", "@remix-project/remix-lib": "^0.5.7", "async": "^2.6.2", "ethereumjs-util": "^7.0.10", diff --git a/libs/remix-debug/package.json b/libs/remix-debug/package.json index 8127cf5708..3659c0d4ae 100644 --- a/libs/remix-debug/package.json +++ b/libs/remix-debug/package.json @@ -22,7 +22,7 @@ "@ethereumjs/common": "^2.2.0", "@ethereumjs/tx": "^3.3.0", "@ethereumjs/vm": "^5.5.0", - "@remix-project/remix-astwalker": "^0.0.26", + "@remix-project/remix-astwalker": "^0.0.37", "@remix-project/remix-lib": "^0.5.7", "async": "^2.6.2", "commander": "^2.19.0", diff --git a/libs/remix-ui/plugin-manager/src/types.d.ts b/libs/remix-ui/plugin-manager/src/types.d.ts index e907c41f71..d8563caad6 100644 --- a/libs/remix-ui/plugin-manager/src/types.d.ts +++ b/libs/remix-ui/plugin-manager/src/types.d.ts @@ -11,12 +11,12 @@ interface SetPluginOptionType { } export class RemixEngine extends Engine { - event: EventEmitter; + event: EventEmitter setPluginOption ({ name, kind }) : SetPluginOptionType onRegistration (plugin) : void } -export function isNative(name: any): any; +export function isNative(name: any): any /** * Checks if plugin caller 'from' is allowed to activate plugin 'to' * The caller can have 'canActivate' as a optional property in the plugin profile. @@ -27,33 +27,33 @@ export function isNative(name: any): any; * @param {any, any} * @returns {boolean} */ -export function canActivate(from: any, to: any): boolean; +export function canActivate(from: any, to: any): boolean export class RemixAppManager extends PluginManager { - constructor(); - event: EventEmitter; - pluginsDirectory: string; - pluginLoader: PluginLoader; - permissionHandler: PermissionHandler; - getAll(): import('@remixproject/plugin-utils').Profile[]; - getIds(): string[]; - isDependent(name: any): any; - isRequired(name: any): any; - registeredPlugins(): Promise; - turnPluginOn(name: string | string[]); - turnPluginOff(name: string); + constructor() + event: EventEmitter + pluginsDirectory: string + pluginLoader: PluginLoader + permissionHandler: PermissionHandler + getAll(): import('@remixproject/plugin-utils').Profile[] + getIds(): string[] + isDependent(name: any): any + isRequired(name: any): any + registeredPlugins(): Promise + turnPluginOn(name: string | string[]) + turnPluginOff(name: string) } export class PluginManagerSettings { - openDialog(): void; - permissions: any; - currentSetting: any; - onValidation(): void; + openDialog(): void + permissions: any + currentSetting: any + onValidation(): void /** Clear one permission from a plugin */ - clearPersmission(from: string, to: string, method: string): void; + clearPersmission(from: string, to: string, method: string): void /** Clear all persmissions from a plugin */ - clearAllPersmission(to: string): void; - settings(): any; - render(): any; + clearAllPersmission(to: string): void + settings(): any + render(): any } export type PluginPermissions = { @@ -94,7 +94,7 @@ export class PluginManagerComponent extends ViewPlugin extends Plugin implements } // eslint-disable-next-line no-use-before-define -export = LocalPlugin; +export = LocalPlugin declare class LocalPlugin { /** * Open a modal to create a local plugin @@ -102,34 +102,34 @@ declare class LocalPlugin { * @returns {Promise<{api: any, profile: any}>} A promise with the new plugin profile */ open(plugins: any[]): Promise<{ - api: any; - profile: any; - }>; + api: any + profile: any + }> - profile: any; + profile: any /** * Create the object to add to the plugin-list */ - create(): any; + create(): any updateName({ target }: { - target: any; - }): void; + target: any + }): void updateUrl({ target }: { - target: any; - }): void; + target: any + }): void updateDisplayName({ target }: { - target: any; - }): void; + target: any + }): void - updateProfile(key: any, e: any): void; + updateProfile(key: any, e: any): void updateMethods({ target }: { - target: any; - }): void; + target: any + }): void /** The form to create a local plugin */ - form(): any; + form(): any } export interface PluginManagerContextProviderProps { @@ -146,12 +146,12 @@ export interface RemixUiPluginManagerProps { * (localStorage, queryParams) **/ declare class PluginLoader { - get currentLoader(): any; - donotAutoReload: string[]; - loaders: {}; - current: string; - set(plugin: any, actives: any): void; - get(): any; + get currentLoader(): any + donotAutoReload: string[] + loaders: {} + current: string + set(plugin: any, actives: any): void + get(): any } export type PluginManagerSettings = {