yummacss 0.2.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/gulpfile.js CHANGED
@@ -1,6 +1,6 @@
1
1
  const { src, dest, watch, series } = require('gulp');
2
2
  const sass = require('gulp-sass')(require('sass'));
3
- const cleanCSS = require('gulp-clean-css');
3
+ const clean = require('gulp-clean-css');
4
4
  const rename = require('gulp-rename');
5
5
 
6
6
  function buildStyles() {
@@ -12,7 +12,7 @@ function buildStyles() {
12
12
 
13
13
  function minifyStyles() {
14
14
  return src('dist/yumma.css')
15
- .pipe(cleanCSS())
15
+ .pipe(clean())
16
16
  .pipe(rename({ suffix: '.min' }))
17
17
  .pipe(dest('public/css'));
18
18
  }
package/index.js CHANGED
@@ -1,8 +1,8 @@
1
1
  const packageJson = require('./package.json');
2
2
 
3
- const greet = () => {
3
+ const showVer = () => {
4
4
  const version = packageJson.version;
5
- console.log(`You're running Yumma CSS v${version}`);
5
+ console.log(`You're running Yumma CSS v${version}!`);
6
6
  };
7
7
 
8
- module.exports = { greet };
8
+ module.exports = { showVer };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yummacss",
3
- "version": "0.2.0",
3
+ "version": "1.0.0",
4
4
  "description": "A CSS library for streamlined UI development.",
5
5
  "main": "index.js",
6
6
  "style": "dist/yumma.css",
@@ -11,7 +11,7 @@
11
11
  "css"
12
12
  ],
13
13
  "license": "MIT",
14
- "homepage": "https://yummacss.netlify.app/",
14
+ "homepage": "https://yummacss.vercel.app/",
15
15
  "bugs": {
16
16
  "url": "https://github.com/yumma-lib/yumma-css/issues"
17
17
  },