@design-sync/utils
Advanced tools
Comparing version 0.1.0 to 0.2.0
export { default as memoize } from 'fast-memoize'; | ||
export { default as camelCase } from 'just-camel-case'; | ||
export { default as get } from 'just-safe-get'; | ||
export { default as set } from 'just-safe-set'; | ||
export * from 'scule'; | ||
export { default as deepMerge } from 'deepmerge'; | ||
@@ -19,2 +19,6 @@ | ||
declare function isNumericString(value: string): boolean; | ||
declare const OBJECT_PATH_REGEX: RegExp; | ||
declare function isObjectPath(value: unknown): value is string; | ||
declare const TEMPLATE_STRING_REGEX: RegExp; | ||
declare function hasTemplateString(value: unknown): value is string; | ||
declare function isValidJsObjectKey(key: string): boolean; | ||
@@ -34,2 +38,2 @@ | ||
export { type IndexOf, type IndexOfOrUndefined, clone, createIdGenerator, evaluateNumericExpression, getErrorMessage, isError, isNumericString, isObject, isString, isValidJsObjectKey, toArray }; | ||
export { type IndexOf, type IndexOfOrUndefined, OBJECT_PATH_REGEX, TEMPLATE_STRING_REGEX, clone, createIdGenerator, evaluateNumericExpression, getErrorMessage, hasTemplateString, isError, isNumericString, isObject, isObjectPath, isString, isValidJsObjectKey, toArray }; |
{ | ||
"name": "@design-sync/utils", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "Tokenize utils", | ||
"repository": "salamaashoush/tokenize", | ||
"repository": "salamaashoush/design-sync", | ||
"license": "MIT", | ||
@@ -16,3 +16,3 @@ "sideEffects": false, | ||
"fast-memoize": "^2.5.2", | ||
"just-camel-case": "6.2.0", | ||
"scule": "^1.1.0", | ||
"just-clone": "6.2.0", | ||
@@ -24,8 +24,7 @@ "just-safe-get": "4.2.0", | ||
"devDependencies": { | ||
"eslint": "^8.53.0", | ||
"eslint": "^8.54.0", | ||
"lint-staged": "^15.1.0", | ||
"@types/node": "^20.9.0", | ||
"@types/node": "^20.9.1", | ||
"@vitest/coverage-v8": "^0.34.6", | ||
"changelogen": "^0.5.5", | ||
"jiti": "^1.21.0", | ||
"typescript": "^5.2.2", | ||
@@ -43,3 +42,2 @@ "unbuild": "^2.0.0", | ||
"dev": "npm run build -- --watch", | ||
"play": "jiti playground", | ||
"lint": "eslint --cache --ext .ts,.js,.mjs,.cjs . && prettier -c src test", | ||
@@ -46,0 +44,0 @@ "lint:fix": "eslint --cache --ext .ts,.js,.mjs,.cjs . --fix && prettier -c src test -w", |
export { default as memoize } from 'fast-memoize'; | ||
export { default as camelCase } from 'just-camel-case'; | ||
export { default as get } from 'just-safe-get'; | ||
export { default as set } from 'just-safe-set'; | ||
export * from 'scule'; | ||
@@ -6,0 +6,0 @@ export * from './array'; |
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
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
15980
10
230
+ Addedscule@^1.1.0
+ Addedscule@1.3.0(transitive)
- Removedjust-camel-case@6.2.0
- Removedjust-camel-case@6.2.0(transitive)