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

@atlaspack/runtime-js

Package Overview
Dependencies
Maintainers
0
Versions
304
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atlaspack/runtime-js - npm Package Compare versions

Comparing version

to
2.12.1-canary.3588

14

package.json
{
"name": "@atlaspack/runtime-js",
"version": "2.12.1-canary.3587+8f31c246e",
"version": "2.12.1-canary.3588+c2c354003",
"license": "(MIT OR Apache-2.0)",

@@ -15,13 +15,13 @@ "publishConfig": {

"engines": {
"atlaspack": "2.12.1-canary.3587+8f31c246e",
"atlaspack": "2.12.1-canary.3588+c2c354003",
"node": ">= 16.0.0"
},
"dependencies": {
"@atlaspack/diagnostic": "2.12.1-canary.3587+8f31c246e",
"@atlaspack/feature-flags": "2.12.1-canary.3587+8f31c246e",
"@atlaspack/plugin": "2.12.1-canary.3587+8f31c246e",
"@atlaspack/utils": "2.12.1-canary.3587+8f31c246e",
"@atlaspack/diagnostic": "2.12.1-canary.3588+c2c354003",
"@atlaspack/feature-flags": "2.12.1-canary.3588+c2c354003",
"@atlaspack/plugin": "2.12.1-canary.3588+c2c354003",
"@atlaspack/utils": "2.12.1-canary.3588+c2c354003",
"nullthrows": "^1.1.1"
},
"gitHead": "8f31c246e157e2a474cda2d497f2d2144fa80be5"
"gitHead": "c2c354003cf6c999a93d60794dbce0d1a925ecbc"
}

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

// @flow
import assert from 'assert';
// $FlowFixMe importing TypeScript
import {getBaseURL} from '../src/helpers/bundle-url-common';

@@ -4,0 +6,0 @@

@@ -0,1 +1,2 @@

// @flow
import assert from 'assert';

@@ -5,2 +6,3 @@

// $FlowFixMe importing TypeScript
import {getShardedBundleURL} from '../src/helpers/bundle-url-shards';

@@ -29,2 +31,3 @@

beforeEach(() => {
// $FlowFixMe
delete globalThis.__ATLASPACK_ENABLE_DOMAIN_SHARDS;

@@ -36,2 +39,3 @@ });

// $FlowFixMe
globalThis.__ATLASPACK_ENABLE_DOMAIN_SHARDS = true;

@@ -52,2 +56,3 @@

// $FlowFixMe
globalThis.__ATLASPACK_ENABLE_DOMAIN_SHARDS = true;

@@ -120,2 +125,3 @@

.find((b) => b.name === 'index.js');
if (!mainBundle) return assert(mainBundle);

@@ -122,0 +128,0 @@ const code = await overlayFS.readFile(mainBundle.filePath, 'utf-8');