Skip to content

Commit

Permalink
fix(more): idk maybe this will work
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Lauer authored and Jake Lauer committed Jun 7, 2024
1 parent 8622b33 commit 9f229ca
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .commitlintrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
extends:
- '@theseus/commitlint-config'
- './packages/commitlint-config'
6 changes: 3 additions & 3 deletions .examples/tic-tac-toe/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 4 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,6 @@
"uuid": "^9.0.1",
"winston": "^3.12.0"
},
"bundledDependencies": [
"@theseus/commitlint-config",
"@theseus/gpt-zip",
"@theseus/sandbox"
],
"devDependencies": {
"@anolilab/semantic-release-pnpm": "^1.1.0",
"@commitlint/cli": "^19.3.0",
Expand All @@ -60,9 +55,9 @@
"@semantic-release/github": "^10.0.5",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^13.0.0",
"@theseus/commitlint-config": "workspace:./packages/commitlint-config",
"@theseus/gpt-zip": "workspace:./packages/gpt-zip",
"@theseus/sandbox": "workspace:./packages/sandbox",
"theseus-commitlint-config": "workspace:./packages/commitlint-config",
"theseus-gpt-zip": "workspace:./packages/gpt-zip",
"theseus-sandbox": "workspace:./packages/sandbox",
"@types/chai": "^4.3.12",
"@types/chai-as-promised": "^7.1.8",
"@types/deep-equal": "^1.0.4",
Expand All @@ -83,7 +78,7 @@
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.4.1",
"eslint-plugin-theseus": "workspace:latest",
"eslint-plugin-theseus": "workspace:./packages/eslint-plugin-theseus",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/commitlint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@theseus/commitlint-config",
"name": "theseus-commitlint-config",
"private": true,
"type": "module",
"version": "1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/gpt-zip/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@theseus/gpt-zip",
"name": "theseus-gpt-zip",
"private": true,
"version": "1.0.0",
"description": "",
Expand Down
2 changes: 1 addition & 1 deletion packages/sandbox/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@theseus/sandbox",
"name": "theseus-sandbox",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
Expand Down
20 changes: 10 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Theseus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import TheseusBuilder from "./TheseusBuilder";
import type { BroadcasterObserver } from "@Broadcast/BroadcasterObserver";
import type { DestroyCallback } from "./lib/Broadcast/Broadcaster";
import type { BaseParams, ITheseus } from "@Types/Theseus";
import { cement, frost, sandbox } from "@theseus/sandbox";
import { cement, frost, sandbox } from "theseus-sandbox";
const log = getTheseusLogger("Observation");

export class Theseus<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { SortaPromise } from "@Evolvers/Types/EvolverTypes";

import type { GenericMutator, MutatorDefs } from "../../Types/MutatorTypes";
import { createChainingProxy } from "./proxy/chaining-proxy-manager";
import { sandbox } from "@theseus/sandbox";
import { sandbox } from "theseus-sandbox";
/**
* Extends MutatorSet to provide chainable mutation operations on evolver data. This class allows mutations to
* be chained together in a fluent manner, enhancing the clarity and expressiveness of state evolution logic.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import getTheseusLogger from "@Shared/Log/get-theseus-logger";


import type { GenericMutator, MutatorDefs } from "../../Types/MutatorTypes";
import { cement, sandbox } from "@theseus/sandbox";
import { cement, sandbox } from "theseus-sandbox";
/**
* Represents a set of mutators that can be applied to an evolver's data. It provides the infrastructure for
* adding mutator functions to the evolver and executing these functions to mutate the evolver's state.
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Refineries/Refinery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import getTheseusLogger from "@Shared/Log/get-theseus-logger";
import { ForgeSet } from "./ForgeSets/ForgeSet";
import { normalizeRefineryName, type NormalizedRefineryName } from "./Util/normalizeRefineryName";
import type { ForgeDefs, RefineObject, RefineryDefinition as RefineryOptions } from "./Types/RefineryTypes";
import { sandbox } from "@theseus/sandbox";
import { sandbox } from "theseus-sandbox";

const log = getTheseusLogger("Refinery");

Expand Down

0 comments on commit 9f229ca

Please sign in to comment.