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

bobril-build-core

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bobril-build-core - npm Package Versions

1.5.0

Diff

Changelog

Source

1.5.0

Added

  • All bundlers does not use inline script in html anymore, so it allows stricter CSP policy.

Fixed

  • Spritting was broken in fast bundler
bobris
published 1.4.0 •

Changelog

Source

1.4.0

Added

  • All module *.js imports are now compiled and detected for dependencies.
  • Support for browser in package.json by spec
    • Additionally if you define "browser" : { "module_name": "module_name/dist/bundle.js" } it override main js file for module imported by its name.
  • Njsast based bundler supports bundling of module.exports = commonjs pattern. For example it is capable of bundling sockjs-client as is.
  • process.env.X replacement works in js files too.
bobris
published 1.3.0 •

Changelog

Source

1.3.0

Added

  • All relative and deep *.js imports are now compiled and detected for dependencies.

Changed

  • Special handling of @stomp/stompjs updated to version 5+
bobris
published 1.2.0 •

Changelog

Source

1.2.0

Added

  • Support for ServiceWorkers/PWA and WebWorkers
    • b.asset support new project: prefix which needs to be followed by relative directory path with project.json
    • target project must have defined "bobril": { "variant": "worker" } or "bobril": { "variant": "serviceworker" }
    • service worker automatically defines swBuildDate (contains date of build in string), swBuildId (contains obfuscated date of build in string), swFiles (array with all files in compilation)
    • example in TestProjects/PWA/main
import * as b from "bobril";
import * as Comlink from "comlink";

if ("serviceWorker" in navigator) {
  navigator.serviceWorker.register(b.asset("project:../sw")).then(function() {
    console.log("Service Worker Registered");
  });
}

var obj = Comlink.wrap(
  new Worker(b.asset("project:../worker"))
)};
bobris
published 1.1.0 •

Changelog

Source

1.1.0

Added

  • Support for TSX translation with bobril-g11n 5.0
<g.T hint="hint for translator" param="parameter">
  Normal text{" "}
  <b>
    bold text{" "}
    <i>
      <u>with</u>
    </i>{" "}
    {g.t("{param}")}
  </b>
</g.T>
bobris
published 1.0.1 •

bobris
published 1.0.0 •

Changelog

Source

1.0.0

Changed

  • Testing iframe in bb/test page covers 100% of main window now.
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