pybiolib 1.2.1053__py3-none-any.whl → 1.2.1056__py3-none-any.whl
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.
- biolib/_internal/templates/copilot_template/.github/instructions/style-react-ts.instructions.md +25 -2
- {pybiolib-1.2.1053.dist-info → pybiolib-1.2.1056.dist-info}/METADATA +1 -1
- {pybiolib-1.2.1053.dist-info → pybiolib-1.2.1056.dist-info}/RECORD +6 -6
- {pybiolib-1.2.1053.dist-info → pybiolib-1.2.1056.dist-info}/LICENSE +0 -0
- {pybiolib-1.2.1053.dist-info → pybiolib-1.2.1056.dist-info}/WHEEL +0 -0
- {pybiolib-1.2.1053.dist-info → pybiolib-1.2.1056.dist-info}/entry_points.txt +0 -0
biolib/_internal/templates/copilot_template/.github/instructions/style-react-ts.instructions.md
CHANGED
@@ -1,13 +1,36 @@
|
|
1
1
|
---
|
2
|
-
applyTo: "**/*.ts,**/*.tsx"
|
2
|
+
applyTo: "**/*.ts,**/*.tsx,**/package.json,**/vite.config.*,**/.yarnrc.yml,**/yarn.lock,**/gui/**"
|
3
3
|
---
|
4
4
|
|
5
5
|
Apply the [general coding guidelines](./style-general.instructions.md) to all code.
|
6
6
|
|
7
7
|
# General Project Guidelines
|
8
|
-
- Use yarn instead of npm whenever relevant.
|
9
8
|
- Prefer using `export default function` over exporting at the end of the file.
|
10
9
|
|
10
|
+
# Package Management
|
11
|
+
- **Always use yarn instead of npm** for all package management operations
|
12
|
+
- Use `yarn install` instead of `npm install`
|
13
|
+
- Use `yarn add <package>` instead of `npm install <package>`
|
14
|
+
- Use `yarn remove <package>` instead of `npm uninstall <package>`
|
15
|
+
- Use `yarn dev` instead of `npm run dev`
|
16
|
+
- Use `yarn build` instead of `npm run build`
|
17
|
+
|
18
|
+
# Build Process
|
19
|
+
- BioLib GUI projects use Vite for building and development
|
20
|
+
- The build process compiles TypeScript and React into a single HTML file
|
21
|
+
- Always run `yarn build` to create the production build before deployment
|
22
|
+
- Use `yarn dev` for local development with hot reloading
|
23
|
+
|
24
|
+
# Configuration Files
|
25
|
+
- Respect the `.yarnrc.yml` configuration for yarn settings
|
26
|
+
- The `package.json` should specify `"packageManager": "yarn@4.6.0"` or similar
|
27
|
+
- Never modify yarn.lock manually - let yarn manage it automatically
|
28
|
+
|
29
|
+
# Dependencies
|
30
|
+
- Add new dependencies using `yarn add <package>` for runtime dependencies
|
31
|
+
- Add development dependencies using `yarn add -D <package>`
|
32
|
+
- Keep dependencies up to date but test thoroughly after updates
|
33
|
+
|
11
34
|
# TypeScript Guidelines
|
12
35
|
- Use TypeScript for all new code
|
13
36
|
- Follow functional programming principles where possible
|
@@ -23,7 +23,7 @@ biolib/_internal/templates/__init__.py,sha256=NVbhLUMC8HITzkLvP88Qu7FHaL-SvQord-
|
|
23
23
|
biolib/_internal/templates/copilot_template/.github/instructions/general-app-knowledge.instructions.md,sha256=-j8v0GRtDhHoqP2wcGUykiwU7HQ0DmkCNxw_01oKMdY,546
|
24
24
|
biolib/_internal/templates/copilot_template/.github/instructions/style-general.instructions.md,sha256=tl2Ve1ZPlPBrH6CSrjIkiMA8xnM2tQIJs1cerKCyAkU,761
|
25
25
|
biolib/_internal/templates/copilot_template/.github/instructions/style-python.instructions.md,sha256=xfypuPqMsz5ejobDoVI0HjmNqksl16aFuIol1nAhpHg,1034
|
26
|
-
biolib/_internal/templates/copilot_template/.github/instructions/style-react-ts.instructions.md,sha256=
|
26
|
+
biolib/_internal/templates/copilot_template/.github/instructions/style-react-ts.instructions.md,sha256=P-heJDSgxqo67YLjFQZ-iIu9Vh0Wln4Jgl6_GzprVQI,2083
|
27
27
|
biolib/_internal/templates/copilot_template/.github/prompts/biolib_app_inputs.prompt.md,sha256=SMzXZImdID0yKjhE1fG54VrHdD8IVuwRxRKsMF-KjWs,697
|
28
28
|
biolib/_internal/templates/copilot_template/.github/prompts/biolib_onboard_repo.prompt.md,sha256=BfCkVyafDHFBMu6qcvKlxpnXKJRHNDp5qR_fN4XB9pI,1515
|
29
29
|
biolib/_internal/templates/copilot_template/.github/prompts/biolib_run_apps.prompt.md,sha256=-t1bmGr3zEFa6lKHaLcI98yq4Sg1TCMW8xbelNSHaOA,696
|
@@ -155,8 +155,8 @@ biolib/utils/cache_state.py,sha256=u256F37QSRIVwqKlbnCyzAX4EMI-kl6Dwu6qwj-Qmag,3
|
|
155
155
|
biolib/utils/multipart_uploader.py,sha256=XvGP1I8tQuKhAH-QugPRoEsCi9qvbRk-DVBs5PNwwJo,8452
|
156
156
|
biolib/utils/seq_util.py,sha256=Ozk0blGtPur_D9MwShD02r_mphyQmgZkx-lOHOwnlIM,6730
|
157
157
|
biolib/utils/zip/remote_zip.py,sha256=0wErYlxir5921agfFeV1xVjf29l9VNgGQvNlWOlj2Yc,23232
|
158
|
-
pybiolib-1.2.
|
159
|
-
pybiolib-1.2.
|
160
|
-
pybiolib-1.2.
|
161
|
-
pybiolib-1.2.
|
162
|
-
pybiolib-1.2.
|
158
|
+
pybiolib-1.2.1056.dist-info/LICENSE,sha256=F2h7gf8i0agDIeWoBPXDMYScvQOz02pAWkKhTGOHaaw,1067
|
159
|
+
pybiolib-1.2.1056.dist-info/METADATA,sha256=QPQ_pu8Hn5MYAMFVNF5DK_DSZvBOLsWpFPFGDOz64ZI,1571
|
160
|
+
pybiolib-1.2.1056.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
161
|
+
pybiolib-1.2.1056.dist-info/entry_points.txt,sha256=p6DyaP_2kctxegTX23WBznnrDi4mz6gx04O5uKtRDXg,42
|
162
|
+
pybiolib-1.2.1056.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|