@linyjs/plugin-templates 0.0.7 → 0.0.9
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 +2 -2
- package/default-template/README.md +5 -4
- package/default-template/package.json +2 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# My Plugin
|
|
2
2
|
|
|
3
|
-
A
|
|
3
|
+
A linyjs framework plugin.
|
|
4
4
|
|
|
5
5
|
## Getting Started
|
|
6
6
|
|
|
@@ -35,7 +35,8 @@ A Ling framework plugin.
|
|
|
35
35
|
- Edit `src/client/index.tsx` for frontend UI
|
|
36
36
|
- Run `npm run dev` for watch mode
|
|
37
37
|
|
|
38
|
-
## Learn More
|
|
39
38
|
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
## linyjs plugin development docs (from NPM package: @linyjs/plugin-docs)
|
|
40
|
+
|
|
41
|
+
- [Plugin Development Guide](node_modules/@linyjs/plugin-docs/docs/getting-started/quick-start.md)
|
|
42
|
+
- [API Reference](node_modules/@linyjs/plugin-docs/docs/api-reference/)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "my-plugin",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "A
|
|
4
|
+
"description": "A linyjs framework plugin",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "tsc",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"pack": "npx @linyjs/cli pack"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
+
"@linyjs/plugin-docs": "^0.1.0",
|
|
12
13
|
"@linyjs/server-module-interface": "^0.0.1",
|
|
13
14
|
"@linyjs/client-module-interface": "^0.0.1",
|
|
14
15
|
"react": "^19.0.0"
|
package/package.json
CHANGED