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

@glimmer/vm-babel-plugins

Package Overview
Dependencies
Maintainers
13
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@glimmer/vm-babel-plugins - npm Package Compare versions

Comparing version 0.84.3 to 0.85.2

.turbo/turbo-build.log

34

package.json
{
"name": "@glimmer/vm-babel-plugins",
"version": "0.84.3",
"version": "0.85.2",
"description": "Compiles out VM assertion and deprecation utilities and debug tooling based on environment",

@@ -9,4 +9,4 @@ "repository": "https://github.com/glimmerjs/glimmer.js",

"private": false,
"scripts": {
"test": "mocha -r esm"
"engines": {
"node": ">=16"
},

@@ -17,12 +17,22 @@ "dependencies": {

"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.8.3",
"babel-plugin-tester": "^10.0.0",
"esm": "^3.2.25",
"mocha": "^8.2.1"
"babel-plugin-tester": "^11.0.4",
"mocha": "^10.2.0",
"@glimmer-workspace/build-support": "^1.0.0"
},
"volta": {
"node": "12.16.1",
"yarn": "1.22.4"
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "mocha",
"test:lint": "eslint .",
"test:types": "tsc --noEmit -p ../tsconfig.json",
"build": "rollup -c rollup.config.mjs"
},
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
}
}
let vmBabelPlugins = require('../../../index');
module.exports = {
plugins: [
...vmBabelPlugins()
]
}
plugins: [...vmBabelPlugins()],
};
import { assert, deprecate } from '@glimmer/global-context';
if (
true
/* DEBUG */
) {
if (true /* DEBUG */) {
console.log('foo');
}
true &&

@@ -11,0 +6,0 @@ assert(foo, 'TESTING 123', {

import { assert, deprecate } from '@glimmer/global-context';
if (
false
/* DEBUG */
) {
if (false /* DEBUG */) {
console.log('foo');
}
false &&

@@ -11,0 +6,0 @@ assert(foo, 'TESTING 123', {

import { assert, deprecate } from '@glimmer/global-context';
if (
true
/* DEBUG */
) {
if (true /* DEBUG */) {
console.log('foo');
}
true &&

@@ -11,0 +6,0 @@ assert(foo, 'TESTING 123', {

@@ -1,3 +0,5 @@

import pluginTester from 'babel-plugin-tester';
import path from 'path';
/* eslint-disable @typescript-eslint/no-var-requires */
/* eslint-disable @typescript-eslint/no-require-imports */
const path = require('node:path');
const pluginTester = require('babel-plugin-tester');

@@ -4,0 +6,0 @@ // For correct .babelrc detection inside the fixture directory we need to force babel's cwd and root to be the package root.

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