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 1.0.0-emerald-6 to 1.0.0-emerald-7

2

package.json
{
"name": "alga-css",
"version": "1.0.0-emerald-6",
"version": "1.0.0-emerald-7",
"description": "Alga CSS is a scope or component-first CSS toolkit for quickly mix or compose CSS components and properties",

@@ -5,0 +5,0 @@ "main": "./src/index.js",

@@ -47,8 +47,4 @@ <p align="center">

extract: [
'./src/**/*.vue',
'./src/**/*.html',
'./src/**/*.astro',
'./src/**/*.svelte',
'./src/**/*.jsx',
'./src/**/*.tsx'
'./src/**/*.{otherFormat}'
],

@@ -55,0 +51,0 @@ src: './src/styles/*.alga'

@@ -226,12 +226,5 @@ const postcss = require('postcss')

const coreFiles = fs.readdirSync(path.resolve(__dirname, './../../alga'))
if(coreFiles) {
for(let file of coreFiles) {
if(file.endsWith('alga.css') || file.endsWith('.alga')) {
if(file.includes(opts.componentName)) {
component = Object.assign({}, component, readPath(path.resolve(__dirname, './../../alga') + '/' + file, opts))
break;
}
}
}
const coreFile = path.resolve(__dirname, './../../alga/'+opts.componentName+'.alga')
if(fs.existsSync(coreFile)) {
component = Object.assign({}, component, readPath(coreFile, opts))
}

@@ -238,0 +231,0 @@

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