Skip to content

Commit

Permalink
chore: update internal references
Browse files Browse the repository at this point in the history
  • Loading branch information
Caele committed Aug 8, 2022
1 parent 8fb4262 commit 9ffe39e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
20 changes: 10 additions & 10 deletions apis/stardust/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -400,16 +400,6 @@ declare namespace stardust {
type: "dimension" | "measure";
}

/**
* An object literal containing meta information about the plugin and a function containing the plugin implementation.
*/
interface Plugin {
info: {
name: string;
};
fn: ()=>void;
}

interface LoadType {
(type: {
name: string;
Expand All @@ -424,6 +414,16 @@ declare namespace stardust {
meta?: object;
}

/**
* An object literal containing meta information about the plugin and a function containing the plugin implementation.
*/
interface Plugin {
info: {
name: string;
};
fn: ()=>void;
}

interface ActionToolbarElement extends HTMLElement{
className: "njs-action-toolbar-popover";
}
Expand Down
6 changes: 3 additions & 3 deletions commands/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
"lint": "eslint src"
},
"peerDependencies": {
"@nebula.js/cli-build": "^2.x",
"@nebula.js/cli-sense": "^2.x",
"@nebula.js/cli-serve": "^2.x"
"@nebula.js/cli-build": "^3.x",
"@nebula.js/cli-sense": "^3.x",
"@nebula.js/cli-serve": "^3.x"
},
"dependencies": {
"@nebula.js/cli-create": "^3.0.0-alpha11",
Expand Down
2 changes: 1 addition & 1 deletion commands/create/templates/sn/picasso/common/_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
"picasso-plugin-q": "1.2.1"
},
"peerDependencies": {
"@nebula.js/stardust": "^2.x"
"@nebula.js/stardust": "^3.x"
}
}

0 comments on commit 9ffe39e

Please sign in to comment.