You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_Import from maDMP in JSON according to the [RDA DMP Common Standard](https://github.com/RDA-DMP-Common/RDA-DMP-Common-Standard)_
4
4
5
-
## Get Started
5
+
## Changelog
6
6
7
-
1. Fill in the [project metadata](src/metadata.ts).
8
-
1. Define [settings](src/data/settings-data.ts) and [user settings](src/data/user-settings-data.ts) data using [zod](https://zod.dev).
9
-
- If you don't want to have any settings, you can delete these files and use `PluginBuilder.createWithNoSettings` instead.
10
-
- If you want just one, you can delete the other and create a null codec instead using `makeNullCodec()`.
11
-
1. Start implementing your plugin by defining the components in the [components](src/components) folder and adding them to the PluginBuilder in [plugin.ts](src/plugin.ts). See [@ds-wizard/plugin-sdk](https://github.com/ds-wizard/dsw-plugin-sdk) for more details.
7
+
### 0.1.0
12
8
13
-
## Useful Commands
9
+
Initial version based on [DSW Replies Importer](https://github.com/ds-wizard/dsw-replies-importer).
14
10
15
-
-`npm run build` = creates a production build of the plugin
16
-
-`npm run dev` = watch for file changes and run the dev server (you can change the port in package.json)
17
-
-`npm run typecheck` = check for type errors
18
-
-`npm run lint` = run linter
19
-
-`npm run format` = format the code (however, it is more convenient to set up formatter directly in VS Code, see below)
11
+
## License
20
12
21
-
### Formatter in VS Code
22
-
23
-
Create `.vscode/settings.json` for easier code editing:
0 commit comments