Skip to content

Commit

Permalink
build: update deps (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoehnelt authored Jul 6, 2023
1 parent 0f593b2 commit 22a86ad
Show file tree
Hide file tree
Showing 9 changed files with 2,265 additions and 9,181 deletions.
121 changes: 121 additions & 0 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
/**
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { Context } from "semantic-release";
export type From = FromCallback | RegExp | string;
export type FromCallback = (filename: string, ...args: unknown[]) => RegExp | string;
export type To = string | ToCallback;
export type ToCallback = (match: string, ...args: unknown[]) => string;
/**
* Replacement is similar to the interface used by https://www.npmjs.com/package/replace-in-file
* with the difference being the single string for `to` and `from`.
*/
export interface Replacement {
/**
* files to search for replacements
*/
files: string[];
/**
* The RegExp pattern to use to match.
*
* Uses `String.replace(new RegExp(s, 'gm'), to)` for implementation, if
* `from` is a string.
*
* For advanced matching, i.e. when using a `release.config.js` file, consult
* the documentation of the `replace-in-file` package
* (https://github.com/adamreisnz/replace-in-file/blob/main/README.md) on its
* `from` option. This allows explicit specification of `RegExp`s, callback
* functions, etc.
*
* Multiple matchers may be provided as an array, following the same
* conversion rules as mentioned above.
*/
from: From | From[];
/**
* The replacement value using a template of variables.
*
* `__VERSION__ = "${nextRelease.version}"`
*
* The context object is used to render the template. Additional values
* can be found at: https://semantic-release.gitbook.io/semantic-release/developer-guide/js-api#result
*
* For advanced replacement (NOTE: only for use with `release.config.js` file version), pass in a function to replace non-standard variables
* ```
* {
* from: `__VERSION__ = 11`, // eslint-disable-line
* to: (matched) => `__VERSION: ${parseInt(matched.split('=')[1].trim()) + 1}`, // eslint-disable-line
* },
* ```
*
* The `args` for a callback function can take a variety of shapes. In its
* simplest form, e.g. if `from` is a string, it's the filename in which the
* replacement is done. If `from` is a regular expression the `args` of the
* callback include captures, the offset of the matched string, the matched
* string, etc. See the `String.replace` documentation for details
*
* Multiple replacements may be specified as an array. These can be either
* strings or callback functions. Note that the amount of replacements needs
* to match the amount of `from` matchers.
*/
to: To | To[];
ignore?: string[];
allowEmptyPaths?: boolean;
countMatches?: boolean;
disableGlobs?: boolean;
encoding?: string;
dry?: boolean;
/**
* The results array can be passed to ensure that the expected replacements
* have been made, and if not, throw and exception with the diff.
*/
results?: {
file: string;
hasChanged: boolean;
numMatches?: number;
numReplacements?: number;
}[];
}
/**
* PluginConfig is used to provide multiple replacement.
*
* ```
* [
* "@google/semantic-release-replace-plugin",
* {
* "replacements": [
* {
* "files": ["foo/__init__.py"],
* "from": "__VERSION__ = \".*\"",
* "to": "__VERSION__ = \"${nextRelease.version}\"",
* "results": [
* {
* "file": "foo/__init__.py",
* "hasChanged": true,
* "numMatches": 1,
* "numReplacements": 1
* }
* ],
* "countMatches": true
* }
* ]
* }
* ]
* ```
*/
export interface PluginConfig {
/** An array of replacements to be made. */
replacements: Replacement[];
}
export declare function prepare(PluginConfig: PluginConfig, context: Context): Promise<void>;
162 changes: 162 additions & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,162 @@
"use strict";
/**
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (g && (g = 0, op[0] && (_ = 0)), _) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.prepare = void 0;
var replace_in_file_1 = __importDefault(require("replace-in-file"));
var lodash_es_1 = require("lodash-es");
var jest_diff_1 = require("jest-diff");
/**
* Wraps the `callback` in a new function that passes the `context` as the
* final argument to the `callback` when it gets called.
*/
// eslint-disable-next-line @typescript-eslint/ban-types
function applyContextToCallback(callback, context) {
// eslint-disable-next-line prefer-spread
return function () {
var args = [];
for (var _i = 0; _i < arguments.length; _i++) {
args[_i] = arguments[_i];
}
return callback.apply(null, args.concat(context));
};
}
/**
* Applies the `context` to the replacement property `to` depending on whether
* it is a string template or a callback function.
*/
function applyContextToReplacement(to, context) {
return typeof to === "function"
? applyContextToCallback(to, context)
: (0, lodash_es_1.template)(to)(__assign({}, context));
}
/**
* Normalizes a `value` into an array, making it more straightforward to apply
* logic to a single value of type `T` or an array of those values.
*/
function normalizeToArray(value) {
return value instanceof Array ? value : [value];
}
function prepare(PluginConfig, context) {
return __awaiter(this, void 0, void 0, function () {
var _i, _a, replacement, results, replaceInFileConfig, actual;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
_i = 0, _a = PluginConfig.replacements;
_b.label = 1;
case 1:
if (!(_i < _a.length)) return [3 /*break*/, 4];
replacement = _a[_i];
results = replacement.results;
delete replacement.results;
replaceInFileConfig = replacement;
// The `replace-in-file` package uses `String.replace` under the hood for
// the actual replacement. If `from` is a string, this means only a
// single occurrence will be replaced. This plugin intents to replace
// _all_ occurrences when given a string to better support
// configuration through JSON, this requires conversion into a `RegExp`.
//
// If `from` is a callback function, the `context` is passed as the final
// parameter to the function. In all other cases, e.g. being a
// `RegExp`, the `from` property does not require any modifications.
//
// The `from` property may either be a single value to match or an array of
// values (in any of the previously described forms)
replaceInFileConfig.from = normalizeToArray(replacement.from).map(function (from) {
switch (typeof from) {
case "function":
return applyContextToCallback(from, context);
case "string":
return new RegExp(from, "gm");
default:
return from;
}
});
replaceInFileConfig.to =
replacement.to instanceof Array
? replacement.to.map(function (to) { return applyContextToReplacement(to, context); })
: applyContextToReplacement(replacement.to, context);
return [4 /*yield*/, replace_in_file_1.default(replaceInFileConfig)];
case 2:
actual = _b.sent();
if (results) {
results = results.sort();
actual = actual.sort();
if (!(0, lodash_es_1.isEqual)(actual.sort(), results.sort())) {
throw new Error("Expected match not found!\n".concat((0, jest_diff_1.diff)(actual, results)));
}
}
_b.label = 3;
case 3:
_i++;
return [3 /*break*/, 1];
case 4: return [2 /*return*/];
}
});
});
}
exports.prepare = prepare;
16 changes: 16 additions & 0 deletions dist/index.test.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/**
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export {};
Loading

0 comments on commit 22a86ad

Please sign in to comment.