Skip to content

Commit ab061fa

Browse files
committed
bug fixed
1 parent 4a1f56b commit ab061fa

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
.git
3-
.vscode
3+
.vscode
4+
pack-zip.js

dist/main.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "acode-plugin-packageAdder",
3-
"version": "1.0.0",
3+
"version": "1.0.3",
44
"description": "Add Package Plugin For Acode",
55
"main": "dist/main.js",
66
"scripts": {

packageAdder.zip

62.1 KB
Binary file not shown.

plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"id": "acode.plugin.packageAdder",
2+
"id": "acode.plugin.package.adder",
33
"name": "Add Package",
44
"main": "dist/main.js",
5-
"version": "1.0.0",
5+
"version": "1.0.2",
66
"readme": "readme.md",
77
"icon": "icon.png",
88
"files": [],

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Plugin helps you to add any npm(css,js) packages in your project (same as codepen features).
33

44
## Use
5-
For using search `Add Package` in command palette and it will open page with some top packages
5+
For using search `Add Package` in command palette(`•••`) and it will open page with some top packages
66
, you can select any packages and add to your project.
77

88
## Features

src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class AddPackage {
1919
}
2020
editorManager.editor.commands.addCommand(command);
2121
// Initialising $page for plugin
22-
$page.id = 'acode-plugin-packageAdder';
22+
$page.id = 'acode-plugin-package-adder';
2323
$page.settitle("Add Package");
2424
this.$page = $page;
2525
// Adding custom styles to $page

src/style.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#acode-plugin-packageAdder{
1+
#acode-plugin-package-adder{
22
.hide{
33
display: none;
44
}

0 commit comments

Comments
 (0)