@kk-garden/shared 1.0.0 → 1.0.1
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 +15 -0
- package/package.json +2 -1
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
## Kiryl Kartsialeu, EN69783 Shared Diploma Project Package
|
|
2
|
+
- This repository contains shared code package for my Diploma Garden project.
|
|
3
|
+
- It contains classes, types and assets the project will need for both server app and front-end app.
|
|
4
|
+
### Package name
|
|
5
|
+
Package name on npm is **@kk-garden/shared**. I would not recommend trying to use it as it is project-specific and is needed not to duplicate the code content needed
|
|
6
|
+
in two repos at a time.
|
|
7
|
+
### How to build
|
|
8
|
+
First make sure you have all the dev dependencies installed:
|
|
9
|
+
```
|
|
10
|
+
npm install
|
|
11
|
+
```
|
|
12
|
+
Then all you have to do is to run:
|
|
13
|
+
```
|
|
14
|
+
npm run build
|
|
15
|
+
```
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kk-garden/shared",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Kiryl Kartsialeu EN69783 diploma project shared package",
|
|
5
5
|
"author": "Kiryl Kartsialeu",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"repository": "https://github.com/KaKKaDu/kk-garden",
|
|
7
8
|
"scripts": {
|
|
8
9
|
"check": "tsc --noEmit",
|
|
9
10
|
"build": "tsc -p tsconfig.json && npm run copy-assets",
|