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

babel-plugin-transform-jsx-stylesheet

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-transform-jsx-stylesheet - npm Package Compare versions

Comparing version 0.2.3 to 0.2.4

8

lib/index.js

@@ -99,8 +99,9 @@ 'use strict';

var sourceValue = node.source.value;
var cssIndex = sourceValue.indexOf('.css');
var extname = _path2.default.extname(sourceValue);
var cssIndex = cssSuffixs.indexOf(extname);
// Do not convert `import styles from './foo.css'` kind
if (node.importKind !== 'value' && cssIndex > 0) {
if (node.importKind !== 'value' && cssIndex > -1) {
var cssFileCount = file.get('cssFileCount') || 0;
var cssParamIdentifiers = file.get('cssParamIdentifiers') || [];
var cssFileBaseName = (0, _camelcase2.default)(_path2.default.basename(sourceValue, '.css'));
var cssFileBaseName = (0, _camelcase2.default)(_path2.default.basename(sourceValue, extname));
var styleSheetIdentifier = t.identifier('' + (cssFileBaseName + NAME_SUFFIX));

@@ -154,4 +155,5 @@

var NAME_SUFFIX = 'StyleSheet';
var cssSuffixs = ['.css', '.scss', '.sass', '.less'];
;
module.exports = exports['default'];
{
"name": "babel-plugin-transform-jsx-stylesheet",
"version": "0.2.3",
"version": "0.2.4",
"description": "Transform stylesheet selector to style in JSX Elements.",

@@ -5,0 +5,0 @@ "license": "BSD-3-Clause",

@@ -130,2 +130,23 @@ import jSXStylePlugin from '../index';

});
it('transform scss file', () => {
expect(getTransfromCode(`
import { createElement, Component } from 'rax';
import './app.scss';
class App extends Component {
render() {
return <div className="header" />;
}
}`)).toBe(`
import { createElement, Component } from 'rax';
import appStyleSheet from './app.scss';
class App extends Component {
render() {
return <div style={_styleSheet["header"]} />;
}
}
const _styleSheet = appStyleSheet;`);
});
});

@@ -6,2 +6,3 @@ import path from 'path';

const NAME_SUFFIX = 'StyleSheet';
const cssSuffixs = ['.css', '.scss', '.sass', '.less'];

@@ -101,8 +102,9 @@ export default function({ types: t, template }) {

const sourceValue = node.source.value;
const cssIndex = sourceValue.indexOf('.css');
const extname = path.extname(sourceValue);
const cssIndex = cssSuffixs.indexOf(extname);
// Do not convert `import styles from './foo.css'` kind
if (node.importKind !== 'value' && cssIndex > 0) {
if (node.importKind !== 'value' && cssIndex > -1) {
let cssFileCount = file.get('cssFileCount') || 0;
let cssParamIdentifiers = file.get('cssParamIdentifiers') || [];
const cssFileBaseName = camelcase(path.basename(sourceValue, '.css'));
const cssFileBaseName = camelcase(path.basename(sourceValue, extname));
const styleSheetIdentifier = t.identifier(`${cssFileBaseName + NAME_SUFFIX}`);

@@ -109,0 +111,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