From 3e3bd190bc621e64aaa1b4384c5c33f73a58f955 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 10 Jul 2023 02:42:01 +0200 Subject: [PATCH] switch to new org scheme --- npmextra.json | 4 ++-- package.json | 4 ++-- ts/smartaction.actionstore.ts | 5 +++++ ts/smartaction.classes.action.ts | 5 +++++ tslint.json | 17 ----------------- 5 files changed, 14 insertions(+), 21 deletions(-) create mode 100644 ts/smartaction.classes.action.ts delete mode 100644 tslint.json diff --git a/npmextra.json b/npmextra.json index ce99084..19348f2 100644 --- a/npmextra.json +++ b/npmextra.json @@ -3,10 +3,10 @@ "projectType": "npm", "module": { "githost": "gitlab.com", - "gitscope": "pushrocks", + "gitscope": "push.rocks", "gitrepo": "smartaction", "description": "a module for managing actions. What was done? What needs to be done? How often should it be done? Whats currently being done?", - "npmPackagename": "@pushrocks/smartaction", + "npmPackagename": "@push.rocks/smartaction", "license": "MIT", "projectDomain": "push.rocks" } diff --git a/package.json b/package.json index ab402c8..aba99ad 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@pushrocks/smartaction", + "name": "@push.rocks/smartaction", "version": "1.0.2", "private": false, "description": "a module for managing actions. What was done? What needs to be done? How often should it be done? Whats currently being done?", @@ -38,4 +38,4 @@ "npmextra.json", "readme.md" ] -} +} \ No newline at end of file diff --git a/ts/smartaction.actionstore.ts b/ts/smartaction.actionstore.ts index e69de29..c9bca6d 100644 --- a/ts/smartaction.actionstore.ts +++ b/ts/smartaction.actionstore.ts @@ -0,0 +1,5 @@ +import * as plugins from '@pushrocks/smartstate'; + +export class ActionStore { + +} \ No newline at end of file diff --git a/ts/smartaction.classes.action.ts b/ts/smartaction.classes.action.ts new file mode 100644 index 0000000..4dcdbe8 --- /dev/null +++ b/ts/smartaction.classes.action.ts @@ -0,0 +1,5 @@ +import * as plugins from './smartaction.plugins'; + +export class Action { + +} \ No newline at end of file diff --git a/tslint.json b/tslint.json deleted file mode 100644 index d4ea2e9..0000000 --- a/tslint.json +++ /dev/null @@ -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" -}