balm-core 4.14.0 → 4.15.0
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 +5 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ You need to set up your development environment before you can do anything.
|
|
|
68
68
|
|
|
69
69
|
Install [Node.js® and npm](https://nodejs.org/en/download/) if they are not already on your machine.
|
|
70
70
|
|
|
71
|
-
> **Verify that you are running at least node `
|
|
71
|
+
> **Verify that you are running at least node `14.18.0` and npm `6.14.15`** by running `node -v` and `npm -v` in a terminal/console window. Older versions maybe produce errors, but newer versions are fine.
|
|
72
72
|
|
|
73
73
|
You develop apps in the context of an [Balm workspace](https://balm.js.org/docs/guide/structure.html).
|
|
74
74
|
|
|
@@ -86,15 +86,15 @@ npm init -y
|
|
|
86
86
|
### 1. Installing `balm`
|
|
87
87
|
|
|
88
88
|
```sh
|
|
89
|
-
yarn global add balm-core
|
|
90
|
-
yarn add -D balm
|
|
89
|
+
yarn global add balm-core
|
|
90
|
+
yarn add -D balm
|
|
91
91
|
```
|
|
92
92
|
|
|
93
93
|
OR
|
|
94
94
|
|
|
95
95
|
```sh
|
|
96
|
-
npm install -g balm-core
|
|
97
|
-
npm install -D balm
|
|
96
|
+
npm install -g balm-core
|
|
97
|
+
npm install -D balm
|
|
98
98
|
```
|
|
99
99
|
|
|
100
100
|
> We currently recommend using [Yarn](https://yarnpkg.com/en/docs/install) instead of npm.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "balm-core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.15.0",
|
|
4
4
|
"description": "BalmJS compiler core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"balm",
|
|
@@ -120,5 +120,5 @@
|
|
|
120
120
|
"engines": {
|
|
121
121
|
"node": ">=14.18.0"
|
|
122
122
|
},
|
|
123
|
-
"gitHead": "
|
|
123
|
+
"gitHead": "ab628f37a5519cd1c8b3fcf42828ca4bdfd2c503"
|
|
124
124
|
}
|