feeds-fun 0.0.4 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -50
- package/package.json +18 -1
package/README.md
CHANGED
|
@@ -1,52 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Frontend for Feeds Fun
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
- Web-based news reader. Self-hosted, if it is your way.
|
|
4
|
+
- Automatically assigns tags to news entries.
|
|
5
|
+
- You create rules to score news by tags.
|
|
6
|
+
- Then filter and sort news how you want.
|
|
4
7
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
|
8
|
-
|
|
9
|
-
## Type Support for `.vue` Imports in TS
|
|
10
|
-
|
|
11
|
-
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
|
|
12
|
-
|
|
13
|
-
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
|
|
14
|
-
|
|
15
|
-
1. Disable the built-in TypeScript Extension
|
|
16
|
-
1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette
|
|
17
|
-
2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
|
|
18
|
-
2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
|
|
19
|
-
|
|
20
|
-
## Customize configuration
|
|
21
|
-
|
|
22
|
-
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
|
23
|
-
|
|
24
|
-
## Project Setup
|
|
25
|
-
|
|
26
|
-
```sh
|
|
27
|
-
npm install
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
### Compile and Hot-Reload for Development
|
|
31
|
-
|
|
32
|
-
```sh
|
|
33
|
-
npm run dev
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
### Type-Check, Compile and Minify for Production
|
|
37
|
-
|
|
38
|
-
```sh
|
|
39
|
-
npm run build
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
### Run Unit Tests with [Vitest](https://vitest.dev/)
|
|
43
|
-
|
|
44
|
-
```sh
|
|
45
|
-
npm run test:unit
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
### Lint with [ESLint](https://eslint.org/)
|
|
49
|
-
|
|
50
|
-
```sh
|
|
51
|
-
npm run lint
|
|
52
|
-
```
|
|
8
|
+
Service is up and running at https://feeds.fun
|
package/package.json
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "feeds-fun",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
|
+
"description": "Frontend for the Feeds Fun — web-based news reader",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"news",
|
|
7
|
+
"news-reader",
|
|
8
|
+
"news-aggregator",
|
|
9
|
+
"rss",
|
|
10
|
+
"rss-reader",
|
|
11
|
+
"rss-aggregator",
|
|
12
|
+
"feed",
|
|
13
|
+
"feed-reader",
|
|
14
|
+
"feed-aggregator",
|
|
15
|
+
"atom",
|
|
16
|
+
"self-hosted"
|
|
17
|
+
],
|
|
18
|
+
"homepage": "https://feeds.fun",
|
|
19
|
+
"license": "BSD-3-Clause",
|
|
20
|
+
"repository": "github:Tiendil/feeds.fun",
|
|
4
21
|
"private": false,
|
|
5
22
|
"scripts": {
|
|
6
23
|
"dev": "vite",
|