This commit is contained in:
Norbert de Langen 2022-01-21 12:30:33 +01:00
parent a0be486680
commit 4b25db1578
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
18 changed files with 36 additions and 21 deletions

View File

@ -11,7 +11,6 @@ lib/manager-webpack4/prebuilt
lib/manager-webpack5/prebuilt lib/manager-webpack5/prebuilt
lib/core-server/prebuilt lib/core-server/prebuilt
lib/codemod/src/transforms/__testfixtures__ lib/codemod/src/transforms/__testfixtures__
lib/components/src/controls/react-editable-json-tree
scripts/storage scripts/storage
scripts/repros-generator scripts/repros-generator
*.bundle.js *.bundle.js

View File

@ -7,7 +7,7 @@ import { ADD_DELTA_TYPE, REMOVE_DELTA_TYPE, UPDATE_DELTA_TYPE } from './types/de
import { getObjectType } from './utils/objectTypes'; import { getObjectType } from './utils/objectTypes';
import DATA_TYPES from './types/dataTypes'; import DATA_TYPES from './types/dataTypes';
import INPUT_USAGE_TYPES from './types/inputUsageTypes'; import INPUT_USAGE_TYPES from './types/inputUsageTypes';
import parse from './utils/parse'; import { parse } from './utils/parse';
class JsonTree extends Component { class JsonTree extends Component {
constructor(props) { constructor(props) {

View File

@ -3,7 +3,7 @@
* @param obj {*} object to get type * @param obj {*} object to get type
* @returns {*} * @returns {*}
*/ */
function getObjectType(obj) { export function getObjectType(obj: any) {
if ( if (
obj !== null && obj !== null &&
typeof obj === 'object' && typeof obj === 'object' &&
@ -21,11 +21,8 @@ function getObjectType(obj) {
* @param newValue {*} new value * @param newValue {*} new value
* @returns {boolean} result * @returns {boolean} result
*/ */
function isComponentWillChange(oldValue, newValue) { export function isComponentWillChange<T extends unknown>(oldValue: T, newValue: T): boolean {
const oldType = getObjectType(oldValue); const oldType = getObjectType(oldValue);
const newType = getObjectType(newValue); const newType = getObjectType(newValue);
return (oldType === 'Function' || newType === 'Function') && newType !== oldType; return (oldType === 'Function' || newType === 'Function') && newType !== oldType;
} }
export { getObjectType };
export { isComponentWillChange };

View File

@ -3,7 +3,7 @@
* @param string {String} string to parse * @param string {String} string to parse
* @returns {*} * @returns {*}
*/ */
function parse(string) { export function parse(string: string) {
let result = string; let result = string;
// Check if string contains 'function' and start with it to eval it // Check if string contains 'function' and start with it to eval it
@ -18,5 +18,3 @@ function parse(string) {
} }
return result; return result;
} }
export default parse;

View File

@ -1,4 +1,4 @@
const object = { export const object = {
minus: { minus: {
color: 'red', color: 'red',
}, },
@ -19,7 +19,8 @@ const object = {
}, },
addForm: {}, addForm: {},
}; };
const array = {
export const array = {
minus: { minus: {
color: 'red', color: 'red',
}, },
@ -40,7 +41,8 @@ const array = {
}, },
addForm: {}, addForm: {},
}; };
const value = {
export const value = {
minus: { minus: {
color: 'red', color: 'red',
}, },
@ -57,7 +59,3 @@ const value = {
color: '#2287CD', color: '#2287CD',
}, },
}; };
export { object };
export { array };
export { value };

View File

@ -2,9 +2,6 @@
"extends": "../../tsconfig.json", "extends": "../../tsconfig.json",
"compilerOptions": { "compilerOptions": {
"rootDir": "./src", "rootDir": "./src",
"types": [
"jest", "@testing-library/jest-dom"
]
}, },
"include": [ "include": [
"src/**/*" "src/**/*"

View File

@ -280,6 +280,7 @@
"remark-lint": "^8.0.0", "remark-lint": "^8.0.0",
"remark-preset-lint-recommended": "^5.0.0", "remark-preset-lint-recommended": "^5.0.0",
"rollup": "^2.60.2", "rollup": "^2.60.2",
"rollup-plugin-extensions": "^0.1.0",
"rollup-plugin-jsx": "^1.0.3", "rollup-plugin-jsx": "^1.0.3",
"rollup-plugin-terser": "^7.0.2", "rollup-plugin-terser": "^7.0.2",
"serve-static": "^1.14.1", "serve-static": "^1.14.1",

View File

@ -10,6 +10,7 @@ import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json'; import json from '@rollup/plugin-json';
import { babel } from '@rollup/plugin-babel'; import { babel } from '@rollup/plugin-babel';
import { terser } from 'rollup-plugin-terser'; import { terser } from 'rollup-plugin-terser';
import extensions from 'rollup-plugin-extensions';
import { generateDtsBundle } from 'dts-bundle-generator'; import { generateDtsBundle } from 'dts-bundle-generator';
import * as dtsLozalize from './dts-localize'; import * as dtsLozalize from './dts-localize';
@ -27,10 +28,24 @@ async function buildESM({ cwd, input, externals }: BuildOptions) {
nodeResolve({ nodeResolve({
browser: true, browser: true,
preferBuiltins: true, preferBuiltins: true,
extensions: ['.tsx', '.ts', '.jsx', 'js'],
}), }),
commonjs(), commonjs(),
json(), json(),
babel({ babelHelpers: 'runtime', skipPreflightCheck: true }), babel({
babelHelpers: 'runtime',
skipPreflightCheck: true,
// presets: ['@babel/typescript', '@babel/react'],
extensions: ['.tsx', '.ts', '.jsx', 'js'],
}),
// extensions({
// // Supporting Typescript files
// // Uses ".mjs, .js" by default
// extensions: ['.tsx', '.ts', '.jsx', '.js'],
// // Resolves index dir files based on supplied extensions
// // This is enable by default
// resolveIndex: true,
// }),
rollupTypescript({ lib: ['es2015', 'dom'], target: 'es6' }), rollupTypescript({ lib: ['es2015', 'dom'], target: 'es6' }),
terser({ output: { comments: false }, module: true }), terser({ output: { comments: false }, module: true }),
], ],

View File

@ -8447,6 +8447,7 @@ __metadata:
remark-lint: ^8.0.0 remark-lint: ^8.0.0
remark-preset-lint-recommended: ^5.0.0 remark-preset-lint-recommended: ^5.0.0
rollup: ^2.60.2 rollup: ^2.60.2
rollup-plugin-extensions: ^0.1.0
rollup-plugin-jsx: ^1.0.3 rollup-plugin-jsx: ^1.0.3
rollup-plugin-terser: ^7.0.2 rollup-plugin-terser: ^7.0.2
serve-static: ^1.14.1 serve-static: ^1.14.1
@ -39842,6 +39843,15 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"rollup-plugin-extensions@npm:^0.1.0":
version: 0.1.0
resolution: "rollup-plugin-extensions@npm:0.1.0"
peerDependencies:
rollup: ^1.4.1
checksum: 1d08385299b3936074dacb837ba154b7ead4b5612c0fdc6b40e227987f5cdd1ea7652bfd81b867f7a77e5f100638862d1778b4bf6519027d573bf7dbad86f666
languageName: node
linkType: hard
"rollup-plugin-jsx@npm:^1.0.3": "rollup-plugin-jsx@npm:^1.0.3":
version: 1.0.3 version: 1.0.3
resolution: "rollup-plugin-jsx@npm:1.0.3" resolution: "rollup-plugin-jsx@npm:1.0.3"