Skip to content

Commit

Permalink
Merge pull request #19 from fortanix/release/1.0.0-beta-20241114
Browse files Browse the repository at this point in the history
Release v1.0.0-beta-20241114
  • Loading branch information
mkrause authored Nov 14, 2024
2 parents efa1fc0 + 24aec5e commit 4c00c20
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 9 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.

20 changes: 16 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
{
"//": "NOTE: This is a generated file. Do not edit this file directly, use package.json.js instead.",
"name": "@fortanix/baklava",
"version": "1.0.0-pre",
"version": "1.0.0-beta-20241114",
"license": "MPL-2.0",
"author": "Fortanix",
"description": "Fortanix Baklava design system",
"repository": "https://github.com/fortanix/baklava",
"repository": {
"type": "git",
"url": "git+https://github.com/fortanix/baklava.git"
},
"sideEffects": [
"*.css"
],
"type": "module",
"files": [
"src",
"app",
"dist",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"gen-package": "node package.json.js",
"install-project": "npm run gen-package && npm install --force",
Expand All @@ -18,7 +29,7 @@
"plop": "NODE_OPTIONS=\"--import tsx\" plop",
"import": "tsx scripts/import.ts",
"serve:dev": "vite --config=./vite.config.ts serve",
"build:prod": "vite --config=./vite.config.ts --emptyOutDir build && cp src/types/vite-env.d.ts dist && echo '{\"name\": \"@fortanix/baklava\",\"main\": \"./baklava.js\"}' > dist/package.json",
"build": "vite --config=./vite.config.ts --emptyOutDir build",
"storybook:serve": "storybook dev -p 6006",
"storybook:build": "storybook build --docs",
"check-types": "tsc --noEmit",
Expand All @@ -28,7 +39,8 @@
"test": "vitest run --root=.",
"test-ui": "vitest --ui",
"coverage": "vitest run --coverage",
"start": "npm run storybook:serve"
"start": "npm run storybook:serve",
"prepare": "npm run build"
},
"devDependencies": {
"plop": "^4.0.1",
Expand Down
19 changes: 16 additions & 3 deletions package.json.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,24 @@ import * as fs from 'node:fs';

const packageConfig = {
name: '@fortanix/baklava',
version: '1.0.0-pre',
version: '1.0.0-beta-20241114',
license: 'MPL-2.0',
author: 'Fortanix',
description: 'Fortanix Baklava design system',
repository: 'https://github.com/fortanix/baklava',
repository: { type: 'git', url: 'git+https://github.com/fortanix/baklava.git' },

sideEffects: ['*.css'],

type: 'module',
files: [
'src',
'app',
'dist',
'LICENSE',
'CHANGELOG.md',
'README.md',
],

scripts: {
// Utilities
'gen-package': 'node package.json.js', // Update `package.json`
Expand All @@ -33,7 +42,8 @@ const packageConfig = {

// App
'serve:dev': 'vite --config=./vite.config.ts serve',
'build:prod': 'vite --config=./vite.config.ts --emptyOutDir build && cp src/types/vite-env.d.ts dist && echo \'{"name": "@fortanix/baklava","main": "./baklava.js"}\' > dist/package.json',
//'build': 'vite --config=./vite.config.ts --emptyOutDir build && cp src/types/vite-env.d.ts dist && echo \'{"name": "@fortanix/baklava","main": "./baklava.js"}\' > dist/package.json',
'build': 'vite --config=./vite.config.ts --emptyOutDir build',

// Storybook
'storybook:serve': 'storybook dev -p 6006',
Expand All @@ -53,6 +63,9 @@ const packageConfig = {

// Shorthands
'start': 'npm run storybook:serve',

// Hooks
'prepare': 'npm run build',
},

// Dev dependencies (only needed when building, or making changes to the code)
Expand Down

0 comments on commit 4c00c20

Please sign in to comment.