@softwarefactory-project/re-ansi 0.7.0 → 0.7.1

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 CHANGED
@@ -28,7 +28,7 @@ Or using yarn:
28
28
  yarn add @softwarefactory-project/re-ansi
29
29
  ```
30
30
 
31
- Add to your `bsconfig.json`:
31
+ Add to your `rescript.json`:
32
32
 
33
33
  ```diff
34
34
  "bs-dependencies": [
@@ -43,7 +43,7 @@ In reason:
43
43
  ```reason
44
44
  let log = "green color: \x1b[01m\x1b[01;32mOK\x1b[00m";
45
45
 
46
- [@react.component]
46
+ @react.component
47
47
  let make = () => {
48
48
  <Ansi log />
49
49
  }
@@ -81,6 +81,10 @@ Make sure to read about [React][reason-react] and [Reason][rescript-lang] too.
81
81
 
82
82
  ## Changes
83
83
 
84
+ ### 0.7.1
85
+
86
+ - Use @rescript/std instead of rescript.
87
+
84
88
  ### 0.7.0
85
89
 
86
90
  - Update to rescript version 11.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwarefactory-project/re-ansi",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "ANSI code to HTML",
5
5
  "files": [
6
6
  "README.md",
@@ -29,6 +29,9 @@
29
29
  "dependencies": {
30
30
  "@rescript/core": "^1.3.0",
31
31
  "@rescript/react": "^0.12.1",
32
+ "@rescript/std": "^11.1.0"
33
+ },
34
+ "devDependencies": {
32
35
  "rescript": "^11.1.0"
33
36
  }
34
37
  }
package/rescript.json CHANGED
@@ -12,5 +12,6 @@
12
12
  }
13
13
  ],
14
14
  "suffix": ".res.js",
15
- "bs-dependencies": ["@rescript/react", "@rescript/core"]
15
+ "bs-dependencies": ["@rescript/react", "@rescript/core"],
16
+ "external-stdlib" : "@rescript/std"
16
17
  }