Skip to content

chore: version packages#59

Merged
jxom merged 1 commit into
mainfrom
changeset-release/main
Dec 10, 2025
Merged

chore: version packages#59
jxom merged 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

prool@0.1.0

Minor Changes

  • #58 5f79243 Thanks @jxom! - Breaking: Removed silius, stackup, rundler instances.

  • #58 5f79243 Thanks @jxom! - Breaking: Refactored to use namespace imports.

    Imports

    - import { createServer } from 'prool'
    - import { anvil, alto } from 'prool/instances'
    - import { defineInstance } from 'prool'
    - import { definePool } from 'prool'
    + import { Instance, Pool, Server } from 'prool'

    Server.createServer.create

    - const server = createServer({
    -   instance: anvil(),
    + const server = Server.create({
    +   instance: Instance.anvil(),
      })

    anvil, altoInstance.anvil, Instance.alto

    - const instance = anvil({ ... })
    + const instance = Instance.anvil({ ... })
    
    - const instance = alto({ ... })
    + const instance = Instance.alto({ ... })

    defineInstanceInstance.define

    - const foo = defineInstance((parameters) => {
    + const foo = Instance.define((parameters) => {
        return {
          name: 'foo',
          // ...
        }
      })

    definePoolPool.define

    - const pool = definePool({
    -   instance: anvil(),
    + const pool = Pool.define({
    +   instance: Instance.anvil(),
      })

@jxom jxom merged commit dc2bd84 into main Dec 10, 2025
2 checks passed
@jxom jxom deleted the changeset-release/main branch December 10, 2025 04:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant