Skip to content

Commit

Permalink
Merge pull request #22 from fortanix/release/1.0.0-beta-20241115-2
Browse files Browse the repository at this point in the history
Release v1.0.0-beta-20241115-2
  • Loading branch information
mkrause authored Nov 15, 2024
2 parents 7b73e4f + 670e4be commit f814ea9
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"//": "NOTE: This is a generated file. Do not edit this file directly, use package.json.js instead.",
"name": "@fortanix/baklava",
"version": "1.0.0-beta-20241115",
"version": "1.0.0-beta-20241115-2",
"license": "MPL-2.0",
"author": "Fortanix",
"description": "Fortanix Baklava design system",
Expand All @@ -23,8 +23,11 @@
"type": "module",
"exports": {
".": {
"types": "dist/baklava.d.ts",
"default": "dist/baklava.js"
"types": "./dist/baklava.d.ts",
"default": "./dist/baklava.js"
},
"./styling/variables.scss": {
"default": "./src/styling/variables.scss"
}
},
"scripts": {
Expand Down
13 changes: 8 additions & 5 deletions package.json.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as fs from 'node:fs';

const packageConfig = {
name: '@fortanix/baklava',
version: '1.0.0-beta-20241115',
version: '1.0.0-beta-20241115-2',
license: 'MPL-2.0',
author: 'Fortanix',
description: 'Fortanix Baklava design system',
Expand All @@ -26,10 +26,13 @@ const packageConfig = {
type: 'module',
exports: {
'.': {
'types': 'dist/baklava.d.ts',
//'require': 'dist/baklava.cjs',
'default': 'dist/baklava.js',
}
'types': './dist/baklava.d.ts',
//'require': './dist/baklava.cjs',
'default': './dist/baklava.js',
},
'./styling/variables.scss': {
'default': './src/styling/variables.scss',
},
},

scripts: {
Expand Down

0 comments on commit f814ea9

Please sign in to comment.