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

@patternslib/dev

Package Overview
Dependencies
Maintainers
0
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@patternslib/dev - npm Package Versions

1245

3.1.8

Diff

Changelog

Source

3.1.8 (2022-12-19)

Maintenance

  • For non-minified development builds, do not generate source maps. (babf289)

  • Upgrade dependencies. (20f7b31)

thet
published 3.1.7 •

Changelog

Source

3.1.7 (2022-12-11)

Maintenance

  • Include changelog from pre-releases in final. (b053a10)When doing a final release after a series of pre-releases, include all the pre-releases changelog items in the final release. See: https://github.com/release-it/release-it/blob/master/docs/pre-releases.md

  • Upgrade dependencies. (98d81a3)

thet
published 3.1.6 •

Changelog

Source

3.1.6 (2022-12-07)

Maintenance

thet
published 3.1.5 •

Changelog

Source

3.1.5 (2022-11-18)

Bug Fixes

  • Build: Get the correct version increment for prereleases. (8947884)
thet
published 3.1.4 •

Changelog

Source

3.1.4 (2022-11-18)

Bug Fixes

  • Makefile: Change the 'check' target to not be a double-colon rule, which cannot be overwritten. See: https://www.gnu.org/software/make/manual/html_node/Double_002dColon.html (5f0f08c)
thet
published 3.1.3 •

Changelog

Source

3.1.3 (2022-11-18)

Bug Fixes

  • Webpack: Add the version banner only to the entry point files. (6f82df1)This fixes a problem where each chunk file was changed with a new release, even if nothing else than the version has changed. Adding the version banner only to the entry points still allows to check the version while keeping the changeset for releases small.

Maintenance

thet
published 3.1.2 •

Changelog

Source

3.1.2 (2022-11-15)

Bug Fixes

  • Fix Makefile to not emit an error when no compiled bundle is found. (15363a7)
thet
published 3.1.1 •

Changelog

Source

3.1.1 (2022-11-15)

Bug Fixes

  • Fix Makefile error with GitHub release. (7df20db)
thet
published 3.1.0 •

Changelog

Source

3.1.0 (2022-11-15)

Features

  • Allow to add the compiled bundles to npm packages. (84bdefd)Creating a npm release with the Makefile prepares now a bundle build with the correct package version added as a comment to the bundle files. The compiled bundle can then be uploaded to npm if it is part of the git repository (included by .gitignore) or part of the npm release (preferred, included by .npmignore).

Adding the compiled bundle to npm allows to directly include it via a CDN like so:

https://cdn.jsdelivr.net/npm/@patternslib/patternslib@9.7.0-alpha.2/dist/bundle.min.js or https://unpkg.com/@patternslib/patternslib@9.7.0-alpha.2/dist/bundle.min.js

We have to compile the bundle with the correct version BEFORE the npm package is created with release-it. The next version is queried using the LEVEL parameter (set by the different release targets) and the "semver" tool.

Maintenance

thet
published 3.0.0 •

Changelog

Source

3.0.0 (2022-10-15)

Features

  • Build: Add Module Federation configuration for webpack. (b84c2fb)

Breaking Changes

  • Build: Remove the showdown-prettify loading config and the now unused imports-loader. (27ba90f)

  • Tests: Remove dependency on jQuery. (259d801)Use the following in your test setup to provide jQuery to external libraries if they depend on a global jQuery object or extend from the jest config from @patternslib/patternslib:

import jquery from "jquery";
global.$ = global.jQuery = jquery;
  • Tests: Remove the Dependency on @patternslib/patternslib. (afe8fee)If you need Patternslib specific test setup, extend from Patternslib.

Maintenance

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