@base-cms/utils
Advanced tools
Comparing version 0.10.0 to 1.0.0-alpha.1
{ | ||
"name": "@base-cms/utils", | ||
"version": "0.10.0", | ||
"version": "1.0.0-alpha.1", | ||
"description": "Utility functions for JavaScript projects.", | ||
@@ -9,6 +9,10 @@ "main": "src/index.js", | ||
"license": "MIT", | ||
"scripts": { | ||
"lint": "eslint --ext .js --max-warnings 5 ./", | ||
"test": "yarn lint" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "c9384f6e52e7e3c454de9b44a0a317f1e6961947" | ||
"gitHead": "1bca843ac62d981ce0f7c8fc6fb9f6fc775f872e" | ||
} |
@@ -0,1 +1,2 @@ | ||
const BEM = require('./bem'); | ||
const Profiler = require('./profiler'); | ||
@@ -8,10 +9,13 @@ const asArray = require('./as-array'); | ||
const compareNumbers = require('./compare-numbers'); | ||
const getDefaultContentTypes = require('./get-default-content-types'); | ||
const getPublishedContentCriteria = require('./get-published-content-criteria'); | ||
const isFunction = require('./is-function'); | ||
const isObject = require('./is-object'); | ||
const parseDelimitedString = require('./parse-delimited-string'); | ||
const randomElementId = require('./random-element-id'); | ||
const sleep = require('./sleep'); | ||
const getDefaultContentTypes = require('./get-default-content-types'); | ||
const getPublishedContentCriteria = require('./get-published-content-criteria'); | ||
const warn = require('./warn'); | ||
module.exports = { | ||
BEM, | ||
Profiler, | ||
@@ -24,8 +28,10 @@ asArray, | ||
compareNumbers, | ||
getDefaultContentTypes, | ||
getPublishedContentCriteria, | ||
isFunction, | ||
isObject, | ||
parseDelimitedString, | ||
randomElementId, | ||
sleep, | ||
getDefaultContentTypes, | ||
getPublishedContentCriteria, | ||
warn, | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6411
21
196