Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@expo/steps

Package Overview
Dependencies
Maintainers
12
Versions
138
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expo/steps - npm Package Compare versions

Comparing version
18.8.0
to
18.9.0
+4
-1
dist/interpolation.js

@@ -5,2 +5,5 @@ "use strict";

const jsepEval_1 = require("./utils/jsepEval");
function isSingleWholeStringInterpolation(value) {
return value.startsWith('${{') && value.endsWith('}}') && !value.includes('${{', 3);
}
function interpolateJobContext({ target, context, }) {

@@ -10,3 +13,3 @@ if (typeof target === 'string') {

// without changing `inputs.build` type, i.e. if it is an object it'll be like `build: {...inputs.build}`.
if (target.startsWith('${{') && target.endsWith('}}')) {
if (isSingleWholeStringInterpolation(target)) {
return (0, jsepEval_1.jsepEval)(target.slice(3, -2), context);

@@ -13,0 +16,0 @@ }

+2
-2
{
"name": "@expo/steps",
"version": "18.8.0",
"version": "18.9.0",
"bugs": "https://github.com/expo/eas-cli/issues",

@@ -59,3 +59,3 @@ "license": "BUSL-1.1",

},
"gitHead": "7c7fad4a13a8a45bdca698fc0fd4c08b17bb189c"
"gitHead": "8fdf47aa7d5d8241d8afa04924a1d0f6d00fdc5a"
}