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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. 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 `12.13.0` and npm `5.2.0`** by running `node -v` and `npm -v` in a terminal/console window. Older versions maybe produce errors, but newer versions are fine.
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@next
90
- yarn add -D balm@next
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@next # Not supported for now (npm bug)
97
- npm install -D balm@next
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.14.0",
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": "17c29172dea1c3550adabb90d2ebc41a7ba6ccd0"
123
+ "gitHead": "ab628f37a5519cd1c8b3fcf42828ca4bdfd2c503"
124
124
  }