switch to new org scheme

This commit is contained in:
Philipp Kunz 2023-07-10 02:48:49 +02:00
parent 8834027f5f
commit 8ca0ef234d
4 changed files with 5 additions and 22 deletions

View File

@ -7,10 +7,10 @@
"projectType": "npm",
"module": {
"githost": "gitlab.com",
"gitscope": "pushrocks",
"gitscope": "push.rocks",
"gitrepo": "smartdrive",
"shortDescription": "a module for drive data and mount management",
"npmPackagename": "@pushrocks/smartdrive",
"npmPackagename": "@push.rocks/smartdrive",
"license": "MIT"
}
}

View File

@ -1,5 +1,5 @@
{
"name": "@pushrocks/smartdrive",
"name": "@push.rocks/smartdrive",
"version": "1.0.9",
"description": "do more with local and cloud drives",
"main": "dist_ts/index.js",
@ -37,4 +37,4 @@
"npmextra.json",
"readme.md"
]
}
}

View File

@ -31,6 +31,6 @@ export class SmartDrive {
* @param devNameArg
*/
public async mountDeviceByName(devNameArg: string) {
await this.smartshellInstance.exec(`mount -o dmask=000,fmask=111,user /dev/sdb1 /mnt/sdb1`);
}
}

View File

@ -1,17 +0,0 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"semicolon": [true, "always"],
"no-console": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-ordering": {
"options":{
"order": [
"static-method"
]
}
}
},
"defaultSeverity": "warning"
}