Skip to content

Commit

Permalink
fix: vsce package (#96)
Browse files Browse the repository at this point in the history
* fix: package

* fix: package

* fix: vsce package

* fix: add "@shared/eslint-config": "^0.0.0"

* fix: packages/vscode-extension/package.json

* fix: 🐛 fix

* fix: remove vsix

* fix: delete vsix
  • Loading branch information
jayzhang committed Apr 8, 2021
1 parent ac7f65a commit affa227
Show file tree
Hide file tree
Showing 8 changed files with 7,610 additions and 23,219 deletions.
5,280 changes: 2 additions & 5,278 deletions packages/api/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fx-api",
"version": "1.0.0",
"version": "1.0.1",
"description": "framework api",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand Down
8 changes: 6 additions & 2 deletions packages/api/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,12 @@ export class ConfigMap extends Map<string, ConfigValue> {
}
return map;
}
constructor(){
super();
// constructor(){
// super();
// Object.setPrototypeOf(this, ConfigMap.prototype);
// }
constructor(entries?: readonly (readonly [string, ConfigValue])[] | null){
super(entries);
Object.setPrototypeOf(this, ConfigMap.prototype);
}
}
Expand Down
Loading

0 comments on commit affa227

Please sign in to comment.