У меня возникли проблемы с Rollup JS.
У меня есть одна библиотека компонентов, использующая машинопись , реаги , AntDesign , использующий накопительный пакет.
Вот мой конфиг накопительного пакета:
import babel from 'rollup-plugin-babel';
import commonjs from 'rollup-plugin-commonjs';
import postcss from 'rollup-plugin-postcss';
import typescript from 'rollup-plugin-typescript2';
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
import url from 'rollup-plugin-url';
import postcssModules from 'postcss-modules';
import pkg from './package.json';
const cssExportMap = {};
export default {
input: 'src/index.ts',
output: [
{
file: pkg.main,
format: 'cjs',
exports: 'named',
sourcemap: true,
},
{
file: pkg.module,
format: 'es',
exports: 'named',
sourcemap: true,
},
],
external: [
{
'react': 'react',
'react-dom': 'react-dom'
},
// Make antd library styles to be external to current project
/^antd[.]*/,
],
plugins: [
peerDepsExternal(),
url(),
typescript({
exclude: ['*.d.ts', '**/*.d.ts', '**/*.stories.tsx', '**/*.spec.tsx'],
rollupCommonJSResolveHack: true,
clean: true,
}),
babel({
babelrc: false,
plugins: [['import', { libraryName: 'antd', style: true }]],
extensions: ['.js', '.jsx', '.ts', '.tsx'],
exclude: 'node_modules/**',
}),
commonjs({
include: 'node_modules/**'
}),
postcss({
plugins: [
postcssModules({
getJSON (id, exportTokens) {
cssExportMap[id] = exportTokens;
}
})
],
getExportNamed: false,
getExport (id) {
return cssExportMap[id];
},
extract: 'build/styles.css',
use: ['sass', ['less', { javascriptEnabled: true, modifyVars: {
'hack': `true; @import "./public/theme/variables.module.less"`
}}]]
})
],
};
и мой пакет. json имеет несколько сценариев:
"build": "rollup -c",
"prepare": "yarn run build"
в локальном все работает нормально, и все файлы генерируются.
Но когда я использую свою библиотеку в приложении create-реагировать на приложения в качестве зависимости.
"ui-kit": "git+https://****:x-oauth-basic@github.com/****/ui_kit_fe.git"
сведение генерирует только индекс . js внутри папки сборки,
это должно быть: - стиль. css - index.es. js - индекс. js .map
но они не есть ...