Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

playroom

Package Overview
Dependencies
Maintainers
2
Versions
135
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

playroom - npm Package Versions

1
14

0.0.0-smaller-react-pragmas-20231121042217

Diff

seek-oss-ci
published 0.0.0-sucrase-transpile-20231112042324 •

seek-oss-ci
published 0.33.0 •

Changelog

Source

0.33.0

Minor Changes

  • 2d3571b: Add support for loading mjs config files

    Consumers should now be able to write their configuration files using ES modules. By default Playroom will look for playroom.config.js with either a .js, .mjs or .cjs file extension.

seek-oss-ci
published 0.0.0-esbuild-wasm-20231103055420 •

seek-oss-ci
published 0.0.0-sucrase-transpile-20231102215437 •

seek-oss-ci
published 0.32.1 •

Changelog

Source

0.32.1

Patch Changes

  • a044864: Allow overriding Webpack module rules

    Consumers may have complex Webpack configurations that can clash with Playroom's. In this case, it's useful to be able to override the module rules that Playroom defines. For example, overriding loaders defined for CSS files:

    // playroom.config.js
    module.exports = {
      webpackConfig: () => ({
        module: {
          rules: [
            // use your own CSS loaders
            { test: /\.css$/, use: ['style-loader', 'css-loader'] },
          ],
        },
      }),
    };
    
seek-oss-ci
published 0.0.0-allow-webpack-overrides-20230727012725 •

seek-oss-ci
published 0.32.0 •

Changelog

Source

0.32.0

Minor Changes

  • 720d542: Drop support for React 16. Consumers are encouraged to upgrade to React 17+, which is a drop-in replacement.
  • 720d542: Support TypeScript 5.0+
seek-oss-ci
published 0.0.0-typescript-5-20230710055755 •

seek-oss-ci
published 0.31.0 •

Changelog

Source

0.31.0

Minor Changes

  • 8ce01ff: Add keyboard shortcuts legend to the settings panel, to help with discoverability.

  • 8ce01ff: Adds keybinding for wrapping the current selection in a tag.

    Pressing <kbd><kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>,</kbd></kbd> (or, on Windows, <kbd><kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>,</kbd></kbd>) will wrap the currently selected text in an empty fragment that is ready to be typed in.

    Works for single cursors (doesn't wrap anything), single line selections, multi-line selections, and multiple cursors.

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc