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

@fluentui/codemods

Package Overview
Dependencies
Maintainers
0
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fluentui/codemods - npm Package Compare versions

Comparing version

to
8.4.27

32

CHANGELOG.json

@@ -5,3 +5,18 @@ {

{
"date": "Tue, 09 Jul 2024 07:34:13 GMT",
"date": "Mon, 23 Dec 2024 07:20:58 GMT",
"tag": "@fluentui/codemods_v8.4.27",
"version": "8.4.27",
"comments": {
"patch": [
{
"author": "olfedias@microsoft.com",
"package": "@fluentui/codemods",
"commit": "dc7bb663e3d93a19b611cf1892556d69c57b1269",
"comment": "chore: remove usage of \"export *\""
}
]
}
},
{
"date": "Thu, 11 Jul 2024 07:33:36 GMT",
"tag": "@fluentui/codemods_v8.4.26",

@@ -12,2 +27,17 @@ "version": "8.4.26",

{
"author": "vgenaev@gmail.com",
"package": "@fluentui/codemods",
"commit": "ff2c81325d734ddff92e606ac681c22c710f262f",
"comment": "remove redundant forceConsistentCasingInFileNames option"
}
]
}
},
{
"date": "Tue, 09 Jul 2024 07:36:39 GMT",
"tag": "@fluentui/codemods_v8.4.26",
"version": "8.4.26",
"comments": {
"none": [
{
"author": "martinhochel@microsoft.com",

@@ -14,0 +44,0 @@ "package": "@fluentui/codemods",

# Change Log - @fluentui/codemods
This log was last generated on Tue, 09 Jul 2024 07:34:13 GMT and should not be manually modified.
This log was last generated on Mon, 23 Dec 2024 07:20:58 GMT and should not be manually modified.
<!-- Start content -->
## [8.4.27](https://github.com/microsoft/fluentui/tree/@fluentui/codemods_v8.4.27)
Mon, 23 Dec 2024 07:20:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/codemods_v8.4.26..@fluentui/codemods_v8.4.27)
### Patches
- chore: remove usage of "export *" ([PR #33448](https://github.com/microsoft/fluentui/pull/33448) by olfedias@microsoft.com)
## [8.4.26](https://github.com/microsoft/fluentui/tree/@fluentui/codemods_v8.4.26)
Tue, 09 Jul 2024 07:34:13 GMT
Tue, 09 Jul 2024 07:36:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/codemods_v8.4.16..@fluentui/codemods_v8.4.26)

@@ -11,0 +20,0 @@

4

lib-commonjs/codeMods/tests/mock/compat/mockIndex.d.ts

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

export * from './Button';
export * from './DefaultButton';
export { Button, OtherButton } from './Button';
export { DefaultButton } from './DefaultButton';
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
tslib_1.__exportStar(require("./Button"), exports);
tslib_1.__exportStar(require("./DefaultButton"), exports);
exports.DefaultButton = exports.OtherButton = exports.Button = void 0;
var Button_1 = require("./Button");
Object.defineProperty(exports, "Button", { enumerable: true, get: function () { return Button_1.Button; } });
Object.defineProperty(exports, "OtherButton", { enumerable: true, get: function () { return Button_1.OtherButton; } });
var DefaultButton_1 = require("./DefaultButton");
Object.defineProperty(exports, "DefaultButton", { enumerable: true, get: function () { return DefaultButton_1.DefaultButton; } });
//# sourceMappingURL=mockIndex.js.map

@@ -20,3 +20,3 @@ "use strict";

SpreadPropInStatement[SpreadPropInStatement["NotFound"] = 3] = "NotFound";
})(SpreadPropInStatement = exports.SpreadPropInStatement || (exports.SpreadPropInStatement = {}));
})(SpreadPropInStatement || (exports.SpreadPropInStatement = SpreadPropInStatement = {}));
//# sourceMappingURL=types.js.map

@@ -1,4 +0,4 @@

export * from './jsx';
export * from './imports';
export * from './props';
export * from './transforms';
export { findJsxTag } from './jsx';
export { appendOrCreateNamedImport, getImportsByPath, renameImport, repathImport } from './imports';
export { renameProp } from './props';
export { boolTransform, enumTransform, numberTransform, stringTransform } from './transforms';
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
tslib_1.__exportStar(require("./jsx"), exports);
tslib_1.__exportStar(require("./imports"), exports);
tslib_1.__exportStar(require("./props"), exports);
tslib_1.__exportStar(require("./transforms"), exports);
exports.stringTransform = exports.numberTransform = exports.enumTransform = exports.boolTransform = exports.renameProp = exports.repathImport = exports.renameImport = exports.getImportsByPath = exports.appendOrCreateNamedImport = exports.findJsxTag = void 0;
var jsx_1 = require("./jsx");
Object.defineProperty(exports, "findJsxTag", { enumerable: true, get: function () { return jsx_1.findJsxTag; } });
var imports_1 = require("./imports");
Object.defineProperty(exports, "appendOrCreateNamedImport", { enumerable: true, get: function () { return imports_1.appendOrCreateNamedImport; } });
Object.defineProperty(exports, "getImportsByPath", { enumerable: true, get: function () { return imports_1.getImportsByPath; } });
Object.defineProperty(exports, "renameImport", { enumerable: true, get: function () { return imports_1.renameImport; } });
Object.defineProperty(exports, "repathImport", { enumerable: true, get: function () { return imports_1.repathImport; } });
var props_1 = require("./props");
Object.defineProperty(exports, "renameProp", { enumerable: true, get: function () { return props_1.renameProp; } });
var transforms_1 = require("./transforms");
Object.defineProperty(exports, "boolTransform", { enumerable: true, get: function () { return transforms_1.boolTransform; } });
Object.defineProperty(exports, "enumTransform", { enumerable: true, get: function () { return transforms_1.enumTransform; } });
Object.defineProperty(exports, "numberTransform", { enumerable: true, get: function () { return transforms_1.numberTransform; } });
Object.defineProperty(exports, "stringTransform", { enumerable: true, get: function () { return transforms_1.stringTransform; } });
//# sourceMappingURL=index.js.map
{
"name": "@fluentui/codemods",
"version": "8.4.26",
"version": "8.4.27",
"description": "Tool enabling easy upgrades to new Fluent UI versions",

@@ -5,0 +5,0 @@ "main": "lib-commonjs/index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet