wrec 0.19.0 → 0.19.2
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 +13 -0
- package/dist/wrec.es.js +812 -649
- package/dist/wrec.js +25 -18
- package/dist/wrec.js.map +1 -1
- package/dist/wrec.min.js +1 -1
- package/dist/wrec.umd.js +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,6 +30,19 @@ For each expression, a new value is computed.
|
|
|
30
30
|
Then wrec uses `#exprToRefsMap` to find all the references to that expression
|
|
31
31
|
and updates them.
|
|
32
32
|
|
|
33
|
+
## Releasing New Versions
|
|
34
|
+
|
|
35
|
+
To release a new version of the wrec library:
|
|
36
|
+
|
|
37
|
+
- Verify that all the tests pass by running `npm run test`.
|
|
38
|
+
- Update the version in `package.json`.
|
|
39
|
+
- Enter `npm run build`.
|
|
40
|
+
- Enter `npm run minify`.
|
|
41
|
+
- Commit all the changes to the local git repository.
|
|
42
|
+
- Push all the changes to the remote git repository.
|
|
43
|
+
- Enter `npm login`.
|
|
44
|
+
- Enter `npm publish`.
|
|
45
|
+
|
|
33
46
|
## Getting Started
|
|
34
47
|
|
|
35
48
|
A wrec component is defined by a class that extends the `Wrec` class.
|