@procore/globalization-toolkit 0.0.1 → 0.0.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/CHANGELOG.md +7 -0
- package/README.md +16 -1
- package/package.json +1 -1
package/CHANGELOG.md
ADDED
package/README.md
CHANGED
|
@@ -5,4 +5,19 @@ i18n formatting library POC
|
|
|
5
5
|
[](https://procoretech.slack.com/archives/C037J98SPHD)
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
compile typescript `tsc -p tsconfig.build.json --outDir ./dist` or `npm run build`
|
|
10
|
+
|
|
11
|
+
delete dist folder: `rm -r dist` or `npm run clean`
|
|
12
|
+
|
|
13
|
+
testing: `jest` or `npm run build`
|
|
14
|
+
|
|
15
|
+
### Install
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
npm i --save @procore/globalization-toolkit
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### Publishing
|
|
22
|
+
|
|
23
|
+
Creating a Release in github with the version tag starting with a 'v' will trigger CircleCI to publish a new release to npm.
|