Skip to content

Commit 8981241

Browse files
committed
chore: wip
1 parent 7630852 commit 8981241

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

storage/framework/core/components/calendar/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,28 @@
22
"name": "@stacksjs/calendar",
33
"type": "module",
44
"version": "0.0.0",
5-
"description": "An opinionated notification component for Stacks.",
5+
"description": "Calendar components for all.",
66
"author": "Chris Breuer",
77
"license": "MIT",
88
"funding": "https://github.com/sponsors/chrisbbreuer",
9-
"homepage": "https://github.com/stacksjs/stacks/tree/main/storage/framework/core/components/notification#readme",
9+
"homepage": "https://github.com/stacksjs/stacks/tree/main/storage/framework/core/components/calendar#readme",
1010
"repository": {
1111
"type": "git",
1212
"url": "git+https://github.com/stacksjs/stacks.git",
13-
"directory": "./storage/framework/core/components/notification"
13+
"directory": "./storage/framework/core/components/calendar"
1414
},
1515
"sideEffects": ["**/*.css"],
1616
"exports": {
1717
".": {
18-
"types": "./lib/stacks-notification.d.ts",
19-
"import": "./lib/stacks-notification.js"
18+
"types": "./lib/stacks-calendar.d.ts",
19+
"import": "./lib/stacks-calendar.js"
2020
},
2121
"./*": {
2222
"import": "./lib/*"
2323
}
2424
},
25-
"module": "dist/stacks-notification.js",
26-
"types": "dist/stacks-notification.d.ts",
25+
"module": "dist/stacks-calendar.js",
26+
"types": "dist/stacks-calendar.d.ts",
2727
"contributors": ["Chris Breuer <chris@stacksjs.org>"],
2828
"files": ["README.md", "lib", "src", "volar.d.ts"],
2929
"scripts": {

storage/framework/core/components/calendar/vite.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default defineConfig(({ command, mode }) => {
4141
lib: {
4242
entry: resolve(__dirname, 'packages/index.ts'),
4343
name: 'StacksNotification',
44-
fileName: 'stacks-notification',
44+
fileName: 'stacks-calendar',
4545
},
4646
outDir: 'lib',
4747
emptyOutDir: true,
@@ -52,11 +52,11 @@ export default defineConfig(({ command, mode }) => {
5252
output: [
5353
// {
5454
// format: 'cjs',
55-
// entryFileNames: `stacks-notification.cjs`,
55+
// entryFileNames: `stacks-calendar.cjs`,
5656
// },
5757
{
5858
format: 'es',
59-
entryFileNames: `stacks-notification.js`,
59+
entryFileNames: `stacks-calendar.js`,
6060
preserveModules: false,
6161
},
6262
],

0 commit comments

Comments
 (0)