Skip to content

Commit

Permalink
0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lerte committed Jun 23, 2024
1 parent 96eb820 commit eaa53f4
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 30 deletions.
14 changes: 7 additions & 7 deletions packages/actify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "actify",
"version": "0.2.7",
"version": "0.2.8",
"license": "MIT",
"author": "Lerte Smith",
"keywords": [
Expand Down Expand Up @@ -38,8 +38,8 @@
"@typescript-eslint/parser": "^7.8.0",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"react": "19.0.0-rc-f994737d14-20240522",
"react-dom": "19.0.0-rc-f994737d14-20240522",
"react": "rc",
"react-dom": "rc",
"rollup": "^3.29.4",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
Expand All @@ -64,11 +64,11 @@
"popmotion": "^11.0.5"
},
"peerDependencies": {
"react": "^19",
"react-dom": "^19"
"react": "rc",
"react-dom": "rc"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.com"
Expand Down
8 changes: 1 addition & 7 deletions packages/actify/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,10 @@ export default [
{
input: 'src/index.ts',
output: [
{
dir: 'dist',
format: 'cjs',
entryFileNames: '[name].cjs',
exports: 'auto',
...outputOptions
},
{
dir: 'dist',
format: 'esm',
entryFileNames: '[name].mjs',
...outputOptions
}
],
Expand Down
53 changes: 37 additions & 16 deletions pnpm-lock.yaml

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

0 comments on commit eaa53f4

Please sign in to comment.