diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..fa33179 --- /dev/null +++ b/.npmignore @@ -0,0 +1,4 @@ +node_modules +/src/** +/postcss.config.js +/tailwind.config.js diff --git a/package.json b/package.json index ec710c4..6d5ed30 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.0.1", + "version": "0.0.2", "author": "michelada.io", "name": "@micheladaio/sips-and-bits.css", "scripts": { @@ -7,7 +7,7 @@ "build:dev": "postcss ./src/index.css --dir dist/ -w src/*/**/*.css ", "watch": "nodemon -x npm run build:dev", "start": "run-p watch dev", - "build": "postcss ./src/index.css --dir dist/ src/*/**/*.css", + "build": "postcss ./src/index.css --dir dist/", "build:cleancss": "cleancss -o ./dist/index.min.css ./dist/*.css", "build:cleandist": "rimraf ./dist/*.css", "prepare": "run-s build:cleandist build build:cleancss" @@ -30,7 +30,7 @@ "repository": { "type": "git", "url": "git+https://github.com/michelada/design_system.git" - }, + }, "bugs": { "url": "https://github.com/michelada/design_system/issues" }, diff --git a/tailwind.config.js b/tailwind.config.js index 7c59cdc..8b5dc0d 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,10 +1,11 @@ module.exports = { + mode: 'jit', purge: [ './**/*.html', ], darkMode: false, // or 'media' or 'class' theme: { - fontFamily: { + fontFamily: { sans: ['Noto Sans'], avant: ['AvantGarde'] },