本文整理汇总了TypeScript中lodash.camelcase.default方法的典型用法代码示例。如果您正苦于以下问题:TypeScript camelcase.default方法的具体用法?TypeScript camelcase.default怎么用?TypeScript camelcase.default使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类lodash.camelcase
的用法示例。
在下文中一共展示了camelcase.default方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: require
import camelCase from "lodash.camelcase"
import filesize from "rollup-plugin-filesize"
// @ts-ignore
const pkg = require("./package.json")
const LIBRARY_NAME = "reactotron-mst"
const GLOBALS = ["ramda", "mobx-state-tree", "mobx"]
export default {
input: `build/es/${LIBRARY_NAME}.js`,
external: GLOBALS,
output: [
{
file: pkg.main,
name: camelCase(LIBRARY_NAME),
format: "umd",
sourcemap: true,
globals: GLOBALS,
},
{
file: pkg.module,
format: "es",
sourcemap: true,
globals: GLOBALS,
},
],
watch: {
include: "build/es/**",
},
plugins: [commonjs(), resolve(), sourceMaps(), filesize()],
示例2: require
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import sourceMaps from 'rollup-plugin-sourcemaps';
import camelCase from 'lodash.camelcase';
import typescript from 'rollup-plugin-typescript2';
import json from 'rollup-plugin-json';
import scss from 'rollup-plugin-scss';
const pkg = require('./package.json');
const libraryName = 'formulize';
export default {
input: `src/${libraryName}.ts`,
output: [
{ file: pkg.main, name: camelCase(libraryName), format: 'umd', sourcemap: true }
],
external: [],
watch: {
include: 'src/**',
},
plugins: [
scss({ output: `dist/${libraryName}.css` }),
json(),
typescript({
tsconfigOverride: {
compilerOptions: {
module: 'es2015'
}
},
useTsconfigDeclarationDir: true
}),
示例3: require
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import json from 'rollup-plugin-json';
import sourceMaps from 'rollup-plugin-sourcemaps';
import camelCase from 'lodash.camelcase';
import typescript from 'rollup-plugin-typescript2';
const pkg = require('./package.json');
const libraryName = 'sandpack';
export default {
input: `src/${libraryName}.ts`,
output: [
{ file: pkg.main, name: camelCase(libraryName), format: 'umd' },
{ file: pkg.module, format: 'es' },
],
sourcemap: true,
// Indicate here external modules you don't wanna include in your bundle (i.e.: 'lodash')
external: [],
watch: {
include: 'src/**',
},
plugins: [
json(),
// Compile TypeScript files
typescript({ useTsconfigDeclarationDir: true }),
// Allow bundling cjs modules (unlike webpack, rollup doesn't understand cjs)
commonjs(),
// Allow node_modules resolution, so you can use 'external' to control
// which external modules to include in the bundle
示例4: getConfig
function getConfig({ isUMD }) {
return {
input: `src/${libraryName}.ts`,
output: [
isUMD
? {
file: getFileName(pkg.main.replace('.js', '.umd.js')),
name: camelCase(libraryName),
format: 'umd',
}
: { file: getFileName(pkg.main), format: 'cjs' },
],
sourcemap: true,
watch: {
include: 'src/**',
},
external: isUMD ? [] : id => id === 'react' || /codemirror/.test(id),
plugins: [
// Compile TypeScript files
typescript({ useTsconfigDeclarationDir: true }),
// Allow bundling cjs modules (unlike webpack, rollup doesn't understand cjs)
isUMD && commonjs(),
// Allow node_modules resolution, so you can use 'external' to control
// which external modules to include in the bundle
// https://github.com/rollup/rollup-plugin-node-resolve#usage
isUMD && resolve(),
// Resolve source maps to the original source
sourceMaps(),
minify && uglify(),
],
};
}
示例5: Error
mapToActionCreator(stream: Observable<any>, actionType: string) {
const actionCreator = this.actionCreators[camelCase(actionType)];
if (!!actionCreator === false) {
throw new Error(`No action creator defined for this action: ${actionType}`);
}
return stream.map(actionCreator);
}
示例6: formatNestedInterfaceName
/**
* Format a given nested interface name
* @private
*/
function formatNestedInterfaceName(name: string): string {
return upperFirst(camelCase(name));
}
示例7:
const getReducer = (actionType: string) => reducers[camelCase(actionType)];