Skip to content

Commit c6738fa

Browse files
committed
Update README.md
1 parent a5e2686 commit c6738fa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ Open `test/index.html` in the browser to see the build working.
2323

2424

2525
## Process
26-
I am building the library using Webpack:
26+
I am building the library using Webpack, which was installed with:
2727
```
2828
npm install --save-dev webpack webpack cli
2929
```
3030

3131
I also created package.json using `npm init` and set up a basic config file for a library build named `webpack.config.js`. I configured package.json so I could run webpack with `npm run build`.
3232

3333

34+
From the original ml5 library's `src` folder, I copied over all source files from the `NeuralNetwork` directory and necessary dependency files from `utils` directory. I also copied over `index.js` from the `src` folder and deleted everything unrelated to NeuralNetwork. I then installed `@tensorflow/[email protected]`, `@tensorflow/[email protected]`, and `[email protected]` with npm.
3435

35-
From the original ml5 library's `src` folder, I copied over all source files from the `NeuralNetwork` directory and necessary dependency files from `utils` directory. I then installed `@tensorflow/[email protected]`, `@tensorflow/[email protected]`, and `[email protected]` with npm.
3636

37-
At this point, the library can be built without error. I was only getting an error about exceeding recommended size limit. For the build, I am using the latest version of node and npm dependencies. It seems like NeuralNetwork does not have any problems with that.
37+
At this point, the library can be built without error. I was only getting an error about exceeding recommended size limit. For the build, I am using the latest version of node and all the npm dependencies. It seems like NeuralNetwork does not have any problems with that.
3838

3939

0 commit comments

Comments
 (0)