Skip to content

Commit a1b4275

Browse files
committed
feat: added yarn clean command
1 parent c0767e3 commit a1b4275

File tree

3 files changed

+588
-3
lines changed

3 files changed

+588
-3
lines changed

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@
99
"email": "[email protected]"
1010
},
1111
"scripts": {
12+
"clean": "rimraf .cache && rimraf build",
1213
"install": "cmake-js compile --runtime=electron --runtime-version=25.8.4 -p16 --CDSUBMODULE_CHECK=OFF --CDLOCAL_MIRROR=https://oxen.rocks/deps --CDENABLE_ONIONREQ=OFF"
1314
},
1415
"devDependencies": {
15-
"clang-format": "^1.8.0"
16+
"clang-format": "^1.8.0",
17+
"rimraf": "2.6.2"
1618
},
1719
"dependencies": {
1820
"cmake-js": "^7.2.1",
1921
"node-addon-api": "^6.1.0"
2022
},
2123
"typings": "index.d.ts"
22-
}
24+
}

src/constants.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,3 @@ class ConstantsWrapper : public Napi::ObjectWrap<ConstantsWrapper> {
1010
static Napi::Object Init(Napi::Env env, Napi::Object exports);
1111
};
1212
} // namespace session::nodeapi
13-

0 commit comments

Comments
 (0)