@chromia/react
Advanced tools
Comparing version 0.0.1 to 0.1.0-beta.1
@@ -6,3 +6,7 @@ All notable changes to this project will be documented in this file. | ||
## [UNRELEASED] | ||
## [0.1.0] - 2024-04-23 | ||
### Added | ||
- initial version | ||
- initial readme | ||
- added initial content |
@@ -6,5 +6,5 @@ "use strict"; | ||
const HelloWorld = ({ name }) => { | ||
return (0, jsx_runtime_1.jsxs)("h1", { children: ["Hello ", name] }); | ||
return (0, jsx_runtime_1.jsxs)("h1", { children: ["Hello Hello", name] }); | ||
}; | ||
exports.HelloWorld = HelloWorld; | ||
//# sourceMappingURL=index.js.map |
import { jsxs as _jsxs } from "react/jsx-runtime"; | ||
export const HelloWorld = ({ name }) => { | ||
return _jsxs("h1", { children: ["Hello ", name] }); | ||
return _jsxs("h1", { children: ["Hello Hello", name] }); | ||
}; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@chromia/react", | ||
"version": "0.0.1", | ||
"version": "0.1.0-beta.1", | ||
"license": "Apache-2.0", | ||
"scripts": { | ||
"build:storybook": "storybook build", | ||
"build": "pnpm build:esm && pnpm build:cjs", | ||
"build:esm": "rm -rf esm && tsc --project tsconfig.esm.json && node ./build-scripts/compile.esm.after.mjs", | ||
"build:esm:watch": "rm -rf esm && tsc-watch --project tsconfig.esm.json --onSuccess 'node ./build-scripts/compile.esm.after.mjs'", | ||
"build:cjs": "rm -rf dist && tsc --project tsconfig.cjs.json && node ./build-scripts/compile.cjs.after.mjs", | ||
"tsCheck": "tsc --noEmit", | ||
"lint": "eslint src --ext .ts,.tsx,.js,.jsx,.mjs", | ||
"lint:fix": "pnpm lint --fix", | ||
"prepack": "pnpm build", | ||
"prepublishOnly": "pnpm test", | ||
"prepare": "pnpm prepare:husky", | ||
"prepare:husky": "husky install", | ||
"test": "NODE_ENV=test jest", | ||
"updates": "npx --yes npm-check-updates --dep prod", | ||
"updates:dev": "npx --yes npm-check-updates --dep dev", | ||
"updates:all": "npx --yes npm-check-updates", | ||
"storybook": "storybook dev -p 6006" | ||
}, | ||
"exports": { | ||
@@ -75,19 +94,3 @@ ".": { | ||
] | ||
}, | ||
"scripts": { | ||
"build:storybook": "storybook build", | ||
"build": "pnpm build:esm && pnpm build:cjs", | ||
"build:esm": "rm -rf esm && tsc --project tsconfig.esm.json && node ./build-scripts/compile.esm.after.mjs", | ||
"build:esm:watch": "rm -rf esm && tsc-watch --project tsconfig.esm.json --onSuccess 'node ./build-scripts/compile.esm.after.mjs'", | ||
"build:cjs": "rm -rf dist && tsc --project tsconfig.cjs.json && node ./build-scripts/compile.cjs.after.mjs", | ||
"tsCheck": "tsc --noEmit", | ||
"lint": "eslint src --ext .ts,.tsx,.js,.jsx,.mjs", | ||
"lint:fix": "pnpm lint --fix", | ||
"prepare:husky": "husky install", | ||
"test": "NODE_ENV=test jest", | ||
"updates": "npx --yes npm-check-updates --dep prod", | ||
"updates:dev": "npx --yes npm-check-updates --dep dev", | ||
"updates:all": "npx --yes npm-check-updates", | ||
"storybook": "storybook dev -p 6006" | ||
} | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
9081
4