Skip to content

Commit

Permalink
Merge pull request #473 from NullVoxPopuli/re-roll-lockfile
Browse files Browse the repository at this point in the history
Upgrade tools, re-roll lockfile
  • Loading branch information
NullVoxPopuli authored Dec 28, 2023
2 parents 93d4a39 + de952f5 commit 54a793a
Show file tree
Hide file tree
Showing 7 changed files with 3,516 additions and 4,854 deletions.
6 changes: 5 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
prefer-workspace-packages=true
resolution-mode=highest

# super strict mode
auto-install-peers=false
resolve-peers-from-workspace-root=false
8 changes: 4 additions & 4 deletions ember-statechart-component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,16 @@
}
},
"devDependencies": {
"@babel/core": "7.18.10",
"@babel/core": "7.23.6",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-syntax-decorators": "7.18.6",
"@babel/plugin-syntax-decorators": "7.23.3",
"@babel/plugin-transform-typescript": "^7.18.6",
"@babel/preset-typescript": "7.18.6",
"@babel/preset-typescript": "7.23.3",
"@embroider/addon-dev": "1.8.3",
"@glimmer/compiler": "^0.84.0",
"@glimmer/component": "^1.0.4",
"@glimmer/env": "^0.1.7",
"@glint/template": "^0.9.1",
"@glint/template": "^1.2.1",
"@nullvoxpopuli/eslint-configs": "^2.1.10",
"@types/ember": "^4.0.0",
"@types/ember__application": "^4.0.0",
Expand Down
4 changes: 2 additions & 2 deletions ember-statechart-component/src/-private/statechart-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default class ComponentManager {
updateHook: true,
});

static create(owner: unknown) {
static create(owner: any) {
let manager = new ComponentManager();

setOwner(manager, owner);
Expand All @@ -46,7 +46,7 @@ export default class ComponentManager {
Object.assign(context, named.context);
}

setOwner(context, getOwner(this));
setOwner(context, getOwner(this) as any);

machine = machine.withContext(context);

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
},
"volta": {
"node": "20.10.0",
"pnpm": "8.12.1"
"pnpm": "8.13.1"
}
}
Loading

0 comments on commit 54a793a

Please sign in to comment.