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

@spark-ui/theme-utils

Package Overview
Dependencies
Maintainers
7
Versions
201
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@spark-ui/theme-utils - npm Package Compare versions

Comparing version 1.1.1 to 1.2.0

dist/createCSSTokensFile.d.ts

6

CHANGELOG.md

@@ -6,2 +6,8 @@ # Change Log

# [1.2.0](https://github.com/adevinta/spark/compare/@spark-ui/theme-utils@1.1.1...@spark-ui/theme-utils@1.2.0) (2023-02-13)
### Features
- **theme-utils:** improve build process for the theme-utils package ([7e53f89](https://github.com/adevinta/spark/commit/7e53f89bb80c7da4f5816b3bdb64b5b9a23d4874)), closes [#219](https://github.com/adevinta/spark/issues/219)
## [1.1.1](https://github.com/adevinta/spark/compare/@spark-ui/theme-utils@1.1.0...@spark-ui/theme-utils@1.1.1) (2023-02-13)

@@ -8,0 +14,0 @@

8

package.json
{
"name": "@spark-ui/theme-utils",
"version": "1.1.1",
"version": "1.2.0",
"description": "Theme configuration",

@@ -8,5 +8,5 @@ "publishConfig": {

},
"main": "./dist/index.js",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"types": "./dist/index.d.ts",
"scripts": {

@@ -21,3 +21,3 @@ "build": "vite build"

},
"gitHead": "88ef74d7ffbf238395c021350fb6e54fe50bba43"
"gitHead": "a854685e736add2fe4854ecd6bef7272ea4ab82f"
}
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"rootDir": "./",
"outDir": "./dist",
"declaration": true,
},
"include": ["**/*", "../../global.d.ts"]
"include": ["src/**/*", "../../global.d.ts"]
}
import path from 'path'
import { terser } from 'rollup-plugin-terser'
import typescript from '@rollup/plugin-typescript'
import dts from 'vite-plugin-dts'

@@ -14,3 +14,3 @@ const pkg = require(path.resolve(__dirname, './package.json'))

lib: {
entry: 'index.mts',
entry: 'src/index.ts',
formats: ['es', 'cjs'],

@@ -21,6 +21,10 @@ fileName: 'index',

external: [...deps, ...devDeps, 'path', 'fs'],
preserveModules: false,
plugins: [terser(), typescript({ cacheDir: './dist' })],
plugins: [terser()],
},
},
plugins: [
dts({
entryRoot: './src',
}),
],
}
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