Skip to content

Commit

Permalink
0.19.1-alpha2
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 committed Jul 27, 2024
1 parent 19e488d commit 3d1959a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion packages/wxt/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "wxt",
"type": "module",
"version": "0.19.1-alpha1",
"version": "0.19.1-alpha2",
"description": "Next gen framework for developing web extensions",
"repository": {
"type": "git",
Expand Down
2 changes: 0 additions & 2 deletions packages/wxt/src/core/utils/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@ export interface Environment {

export function createEnvironment(getGlobals: () => EnvGlobals): Environment {
const setup = () => {
console.log('SETUP');
const envGlobals = getGlobals();
const ogGlobals = getOgGlobals(envGlobals);
applyGlobals(envGlobals);

return () => {
applyGlobals(ogGlobals);
console.log('TEARDOWN');
};
};
const run = async (fn: () => any) => {
Expand Down

0 comments on commit 3d1959a

Please sign in to comment.