@socket.tech/dl-common 1.0.2-test.4 → 1.0.2-test.5
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 +6 -6
- package/dist/constants/types.d.ts +0 -1
- package/dist/utils/extraUtils.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
# dl-batcher-service
|
|
2
2
|
|
|
3
|
-
to start server locally,
|
|
3
|
+
to start server locally,
|
|
4
4
|
`npm run start`
|
|
5
5
|
|
|
6
|
-
to deploy complete service to dev,
|
|
6
|
+
to deploy complete service to dev,
|
|
7
7
|
`npm run deploy`
|
|
8
8
|
|
|
9
|
-
to deploy a sepific function (for example if change in apis, can only deploy routeHandler. Similarly if only change in cron timings, can deploy only cronHandler) -
|
|
9
|
+
to deploy a sepific function (for example if change in apis, can only deploy routeHandler. Similarly if only change in cron timings, can deploy only cronHandler) -
|
|
10
10
|
`sls deploy -f cronHandler`
|
|
11
11
|
|
|
12
|
-
to check logs locally in terminal -
|
|
12
|
+
to check logs locally in terminal -
|
|
13
13
|
`sls logs -f <function>`
|
|
14
14
|
|
|
15
|
-
for publishing -
|
|
15
|
+
for publishing -
|
|
16
16
|
`yarn lint`
|
|
17
17
|
`yarn run build`
|
|
18
|
-
`npm publish`
|
|
18
|
+
`npm publish`
|
package/dist/utils/extraUtils.js
CHANGED