Astro implementation of openring npmjs.com/package/@jasikpark/astro-openring
astro webring typescript
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove index.ts

+2 -14
-6
index.ts
··· 1 - // Do not write code directly here, instead use the `src` folder! 2 - // Then, use this file to export everything you want your user to access. 3 - 4 - import MyComponent from './src/MyComponent.astro'; 5 - 6 - export default MyComponent;
+2 -8
package.json
··· 5 5 "exports": { 6 6 ".": "./index.ts" 7 7 }, 8 - "files": [ 9 - "src", 10 - "index.ts" 11 - ], 12 - "keywords": [ 13 - "astro-component", 14 - "webring" 15 - ], 8 + "files": ["src"], 9 + "keywords": ["astro-component", "webring"], 16 10 "scripts": { 17 11 "dev": "astro dev", 18 12 "build": "astro build",