New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

alga-css

Package Overview
Dependencies
Maintainers
1
Versions
173
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alga-css - npm Package Compare versions

Comparing version 0.0.1-alpha1 to 0.0.1-alpha2

css/components/carousel.css

35

gulpfile.js

@@ -39,17 +39,34 @@ const { src, dest, watch, series, parallel } = require('gulp')

/*function js() {
return src('./js/alga.js')
.pipe(dest(dist.js))
.pipe(terser())
function cssSlim() {
return src('css/slim.css', { sourcemaps: true })
.pipe(postcss([
require('postcss-import'),
require('postcss-mixins')({
mixinsDir: path.join(__dirname, 'css/mixins')
}),
require('tailwindcss'),
//require("stylelint"),
require('postcss-custom-properties'),
require('postcss-simple-vars'),
require('postcss-nested'),
require('autoprefixer')
]))
.pipe(rename("alga-slim.css"))
.pipe(dest(dist.css, { sourcemaps: '.' }))
}
function cssSlimMin() {
return src(`${dist.css}alga-slim.css`)
.pipe(cleanCSS({ level: { 1: { specialComments: 0 } } }))
.pipe(rename({ suffix: '.min' }))
.pipe(dest(dist.js))
}*/
.pipe(dest(dist.css))
}
function watchChanges() {
watch('css/app.css', series(css, cssMin))
//watch('js/alga.js', js)
watch('css/slim.css', series(cssSlim, cssSlimMin))
}
exports.watch = watchChanges
exports.build = series(css, cssMin) //, js
exports.default = series(css, cssMin) //, js, watchChanges
exports.build = series(css, cssMin, cssSlim, cssSlimMin)
exports.default = series(css, cssMin, cssSlim, cssSlimMin) //watchChanges
{
"name": "alga-css",
"version": "0.0.1-alpha1",
"version": "0.0.1-alpha2",
"description": "Alga CSS is an alternative toolkit based on Tailwind CSS and Bootstrap 5",
"main": "css/app.css",
"unpkg": "dist/alga.min.css",
"scripts": {

@@ -7,0 +8,0 @@ "test": "gulp"

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc