New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

playroom

Package Overview
Dependencies
Maintainers
0
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

playroom - npm Package Versions

1
35
14

0.0.0-smaller-react-pragmas-20231122225316

Diff
seek-oss-ci
published 0.0.0-smaller-react-pragmas-20231122225316 •
seek-oss-ci
published 0.0.0-smaller-react-pragmas-20231121042217 •
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 •