Skip to content

Commit 8187536

Browse files
Merge pull request #46 from Mind-Sports-Games/back-to-gulp
back to using gulp
2 parents f6d223d + 682e142 commit 8187536

File tree

6 files changed

+8073
-2166
lines changed

6 files changed

+8073
-2166
lines changed

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
node_modules/
22
dist/
3-
build/
3+
yarn.lock
4+
5+
/*.js
6+
/*.d.ts
7+
/*.js.map

README.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -88,20 +88,26 @@ More? Please make a pull request to include it here.
8888

8989
## Development
9090

91+
node version : 20
92+
9193
Install build dependencies:
9294

9395
```sh
94-
yarn install
96+
npm install
9597
```
9698

9799
To build the node module:
98100

99101
```sh
100-
yarn run compile -- --watch
102+
npm run compile -- --watch
101103
```
102104

103-
To build the standalone:
105+
To build the dist files:
106+
107+
```sh
108+
npm run dev -- --watch
109+
```
104110

105111
```sh
106-
yarn run dist -- --watch
112+
npm run prod -- --watch
107113
```

0 commit comments

Comments
 (0)