@bodhi-project/antrd

AntD Redesigned – Style files for AntD Components for our projects.

Usage no npm install needed!

<script type="module">
  import bodhiProjectAntrd from 'https://cdn.skypack.dev/@bodhi-project/antrd';
</script>

README

ant-redesigned

AntD Redesigned – Just the style files for AntD Components for our projects, because no code splitting from AntD.

Copy from AntD

rsync -a --include '*/' --include '*.css' --include '*/style/css.js' --exclude '*' ../ant-design/lib/v.v.v/ lib/v.v.v/

Remove empty folders

find . -depth -exec rmdir {} \;

Change "ant" to whatever if that's what you want

find . -type f -name "*.css" -print0 | xargs -0 sed -i '' -e "s/ant/wtf/g"

Semver versioning

npm version patch --no-git-tag-version // Add a patch. Ex, goes from 0.0.1 to 0.0.2
npm version minor --no-git-tag-version // Add a minor package version. Ex, goes from 0.0.1 to 0.1.1
npm version major --no-git-tag-version // Add a major package version. Ex, goes from 0.0.1 to 1.0.1

Publish

npm publish