@kaiko.io/rescript-deser 2.1.0 → 3.0.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/Makefile +10 -2
  2. package/package.json +3 -3
package/Makefile CHANGED
@@ -4,7 +4,11 @@ yarn.lock: bsconfig.json package.json
4
4
  yarn install
5
5
 
6
6
  compile: yarn.lock
7
- [ -n "$(INSIDE_EMACS)" ] && (rescript build -with-deps | sed "s@ $(shell pwd)/@@") || rescript build -with-deps
7
+ @if [ -n "$(INSIDE_EMACS)" ]; then \
8
+ NINJA_ANSI_FORCED=0 rescript build -with-deps; \
9
+ else \
10
+ rescript build -with-deps; \
11
+ fi
8
12
 
9
13
  format: yarn.lock
10
14
  rescript format -all
@@ -17,7 +21,11 @@ publish: compile
17
21
  RESCRIPT_FILES := $(shell find src -type f -name '*.res')
18
22
 
19
23
  compile-rescript: $(RESCRIPT_FILES) yarn.lock
20
- [ -n "$(INSIDE_EMACS)" ] && (rescript build -with-deps | sed "s@ $(shell pwd)/@@") || rescript build -with-deps
24
+ @if [ -n "$(INSIDE_EMACS)" ]; then \
25
+ NINJA_ANSI_FORCED=0 rescript build -with-deps; \
26
+ else \
27
+ rescript build -with-deps; \
28
+ fi
21
29
 
22
30
 
23
31
  test: compile
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaiko.io/rescript-deser",
3
- "version": "2.1.0",
3
+ "version": "3.0.0",
4
4
  "keywords": [
5
5
  "json",
6
6
  "deserializer",
@@ -12,11 +12,11 @@
12
12
  "license": "MIT",
13
13
  "private": false,
14
14
  "dependencies": {
15
- "@kaiko.io/rescript-prelude": "^3.0.1"
15
+ "@kaiko.io/rescript-prelude": "^6.0.0"
16
16
  },
17
17
  "devDependencies": {
18
18
  "esbuild": "^0.15.7",
19
19
  "qunit": "^2.16.0",
20
- "rescript": "^10.0.1"
20
+ "rescript": "^10.1.4"
21
21
  }
22
22
  }