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

@sps-woodland/core

Package Overview
Dependencies
Maintainers
0
Versions
253
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sps-woodland/core - npm Package Compare versions

Comparing version 7.17.13 to 7.19.0

lib/index.js

16

package.json
{
"name": "@sps-woodland/core",
"description": "SPS Woodland Design System core library code",
"version": "7.17.13",
"version": "7.19.0",
"author": "SPS Commerce",

@@ -9,11 +9,11 @@ "license": "UNLICENSED",

"homepage": "https://github.com/SPSCommerce/woodland/tree/master/packages/@sps-woodland/core#readme",
"module": "./lib/index.es.js",
"type": "module",
"main": "./lib/index.cjs.js",
"module": "./lib/index.js",
"main": "./lib/index.umd.cjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.es.js",
"require": "./lib/index.cjs.js",
"default": "./lib/index.cjs.js",
"require": "./lib/index.umd.cjs",
"import": "./lib/index.js",
"default": "./lib/index.js",
"types": "./lib/index.d.ts"

@@ -33,3 +33,3 @@ },

"react-dom": "^16.14.0",
"@sps-woodland/tokens": "7.17.13"
"@sps-woodland/tokens": "7.19.0"
},

@@ -42,3 +42,3 @@ "devDependencies": {

"react-dom": "^16.14.0",
"@sps-woodland/tokens": "7.17.13"
"@sps-woodland/tokens": "7.19.0"
},

@@ -45,0 +45,0 @@ "dependencies": {

import path from "path";
import { vanillaExtractPlugin } from "@vanilla-extract/vite-plugin";
import { defineConfig } from "vite";
import { getVanillaExtractPluginProps } from "../../../scripts/vanilla-extract-plugin-props.js";
import pkg from "./package.json";
const packageVersion = process.env.PREDICTED_VERSION || pkg.version;
export default defineConfig({
plugins: [vanillaExtractPlugin()],
plugins: [
vanillaExtractPlugin(
getVanillaExtractPluginProps({
packageName: pkg.name,
packageVersion,
})
),
],
build: {
lib: {
entry: path.resolve(__dirname, "src/index.ts"),
formats: ["es", "cjs"],
fileName: (format) => `index.${format}.js`,
name: "Core",
fileName: "index",
},

@@ -15,0 +24,0 @@ outDir: path.resolve(__dirname, "./lib"),

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