File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change 1
1
# List of std library deprecations
2
2
3
+ ## Deprecated in 0.4.x (will be changed in 0.5.0)
4
+
5
+ ### Special case for default input directory
6
+
7
+ In most cases, the input directory will be the current directory if
8
+ not explicitly set with ` --input-directory ` .
9
+
10
+ However, there is a special case: if the script being run is from the
11
+ filesystem, the input directory will be set to the directory
12
+ containing the script.
13
+
14
+ This special case is deprecated. From 0.5.0, the input directory will
15
+ _ always default to the current working directory_ unless explicitly
16
+ set with ` --input-directory ` .
17
+
3
18
## Deprecated in 0.3.x (will be removed in 0.4.0)
4
19
5
20
### ` generate ` file property is now called path
@@ -17,9 +32,10 @@ const object = {
17
32
export default [
18
33
{ file: 'object0.yaml', value: object },
19
34
];
20
- ````
35
+ ```
21
36
22
37
** Use** :
38
+
23
39
```
24
40
export default [
25
41
{ path: 'object0.yaml', value: object },
You can’t perform that action at this time.
0 commit comments