Skip to content

Commit

Permalink
Merge remote-tracking branch 'Parent/v2' into Current
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Jun 6, 2024
2 parents bf709d0 + 518d826 commit 7d9b340
Show file tree
Hide file tree
Showing 10 changed files with 1,497 additions and 27 deletions.
1 change: 0 additions & 1 deletion dist-js/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,6 @@ async function readTextFileLines(path, options) {
if (done)
this.rid = null;
return {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
value: done ? "" : line,
done,
};
Expand Down
1 change: 0 additions & 1 deletion dist-js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,6 @@ async function readTextFileLines(path, options) {
if (done)
this.rid = null;
return {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
value: done ? "" : line,
done,
};
Expand Down
1 change: 0 additions & 1 deletion guest-js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,6 @@ async function readTextFileLines(
if (done) this.rid = null;

return {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
value: done ? "" : line!,
done,
};
Expand Down
51 changes: 27 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
{
"name": "@tauri-apps/plugin-fs",
"description": "Access the file system.",
"exports": {
"import": "./dist-js/index.js",
"require": "./dist-js/index.cjs",
"types": "./dist-js/index.d.ts"
},
"main": "./dist-js/index.cjs",
"module": "./dist-js/index.js",
"types": "./dist-js/index.d.ts",
"files": [
"dist-js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c"
},
"dependencies": {
"@tauri-apps/api": "2.0.0-beta.13"
},
"authors": [
"Tauri Programme within The Commons Conservancy"
]
"name": "@tauri-apps/plugin-fs",
"version": "2.0.0-beta.5",
"description": "Access the file system.",
"license": "MIT or APACHE-2.0",
"authors": [
"Tauri Programme within The Commons Conservancy"
],
"type": "module",
"types": "./dist-js/index.d.ts",
"main": "./dist-js/index.cjs",
"module": "./dist-js/index.js",
"exports": {
"types": "./dist-js/index.d.ts",
"import": "./dist-js/index.js",
"require": "./dist-js/index.cjs"
},
"scripts": {
"build": "rollup -c"
},
"files": [
"dist-js",
"README.md",
"LICENSE"
],
"dependencies": {
"@tauri-apps/api": "2.0.0-beta.13"
}
}
Loading

0 comments on commit 7d9b340

Please sign in to comment.