Compare commits
122 Commits
Author | SHA1 | Date | |
---|---|---|---|
e2b154f392 | |||
993997d5fa | |||
52e85d61cd | |||
b991f62af7 | |||
8ad26eb358 | |||
de4d7d3a2d | |||
f1f3465917 | |||
a6441a3e3e | |||
7611268fb9 | |||
95c57d489d | |||
8ab28f582b | |||
8ad3a21ed8 | |||
e94af8a1d4 | |||
71269a1820 | |||
f76a58a3a4 | |||
d79c4d2eaa | |||
5ea12b77e7 | |||
0fbb18690a | |||
adbc255bcd | |||
16676d52da | |||
89251ad3e7 | |||
7e2a4725a5 | |||
f2c5cecbd3 | |||
8139cb93b2 | |||
f107a157af | |||
e0c2f8671d | |||
c644337bf0 | |||
405cad9002 | |||
a2af8cef07 | |||
b1532fe23f | |||
91cf04385d | |||
1d5a37d0c0 | |||
9b383006c2 | |||
7c918287f7 | |||
4a1443d2f4 | |||
1d76d50bc3 | |||
4415d889b4 | |||
404bdc9aac | |||
f09289717a | |||
ed3d76cf86 | |||
83e904bb3c | |||
93b27f8e6a | |||
c0bbe6ef68 | |||
b11104bd74 | |||
f96024380a | |||
cd5d50369e | |||
d03ead86fd | |||
66b1dc0a3f | |||
5b8d6ee471 | |||
eb993c20f2 | |||
6dc8009a32 | |||
b0aeb19b5d | |||
c0f85dd931 | |||
4b08d321bc | |||
a53b9f9aa6 | |||
64a31e9812 | |||
776f993f6f | |||
7481784a64 | |||
aa6649483a | |||
65f778c40f | |||
4204a61db9 | |||
181369ad3f | |||
d5816b0ed8 | |||
889643e233 | |||
1d3a2dcb64 | |||
9688e3323d | |||
6fa56e9be6 | |||
15e9df5f4f | |||
e0f8503b2b | |||
1337a6ec25 | |||
bd36e3edf3 | |||
89fae2edc9 | |||
82b09ad253 | |||
57ce71cda3 | |||
b171a14c0a | |||
63e0d7fe9e | |||
e2bc505c41 | |||
af82480644 | |||
27a08f11b7 | |||
073f978626 | |||
8d7ab769e1 | |||
8ebc438e2d | |||
d0d158ee87 | |||
3ada286495 | |||
0514a74a07 | |||
587d08239a | |||
7ee934eb46 | |||
ebcd8d4b51 | |||
27477253ee | |||
9ed461e1e4 | |||
b854a161f3 | |||
0598357010 | |||
9dae6dcda1 | |||
4cf71d2edc | |||
0eec0c04e8 | |||
ef5d4d2a9c | |||
f05481a267 | |||
d66a88538a | |||
1c1a110ca3 | |||
3f7790e8c8 | |||
2018b27a4b | |||
3b8ac18a6c | |||
e36af800a3 | |||
76b810663f | |||
9950661a36 | |||
6fa461aff5 | |||
4ca73a77f9 | |||
2d4d243454 | |||
f77f36312f | |||
c508c85473 | |||
50a0cadd11 | |||
d5cb794ea6 | |||
3bb65bedf6 | |||
53147a8812 | |||
c63a5f88d5 | |||
f039ace7bc | |||
bbc34ad98b | |||
c699954d08 | |||
1c84726ed8 | |||
c589e20222 | |||
f170cb8909 | |||
ca1d058789 |
127
.gitlab-ci.yml
127
.gitlab-ci.yml
@@ -1,127 +0,0 @@
|
|||||||
# gitzone ci_default
|
|
||||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
|
||||||
|
|
||||||
cache:
|
|
||||||
paths:
|
|
||||||
- .npmci_cache/
|
|
||||||
key: '$CI_BUILD_STAGE'
|
|
||||||
|
|
||||||
stages:
|
|
||||||
- security
|
|
||||||
- test
|
|
||||||
- release
|
|
||||||
- metadata
|
|
||||||
|
|
||||||
# ====================
|
|
||||||
# security stage
|
|
||||||
# ====================
|
|
||||||
mirror:
|
|
||||||
stage: security
|
|
||||||
script:
|
|
||||||
- npmci git mirror
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
|
|
||||||
audit:
|
|
||||||
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
|
|
||||||
stage: security
|
|
||||||
script:
|
|
||||||
- npmci npm prepare
|
|
||||||
- npmci command npm install --ignore-scripts
|
|
||||||
- npmci command npm config set registry https://registry.npmjs.org
|
|
||||||
- npmci command npm audit --audit-level=high
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
|
|
||||||
# ====================
|
|
||||||
# test stage
|
|
||||||
# ====================
|
|
||||||
|
|
||||||
testStable:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci npm prepare
|
|
||||||
- npmci node install stable
|
|
||||||
- npmci npm install
|
|
||||||
- npmci npm test
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- priv
|
|
||||||
|
|
||||||
testBuild:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci npm prepare
|
|
||||||
- npmci node install stable
|
|
||||||
- npmci npm install
|
|
||||||
- npmci command npm run build
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
|
|
||||||
release:
|
|
||||||
stage: release
|
|
||||||
script:
|
|
||||||
- npmci node install stable
|
|
||||||
- npmci npm publish
|
|
||||||
only:
|
|
||||||
- tags
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
|
|
||||||
# ====================
|
|
||||||
# metadata stage
|
|
||||||
# ====================
|
|
||||||
codequality:
|
|
||||||
stage: metadata
|
|
||||||
allow_failure: true
|
|
||||||
script:
|
|
||||||
- npmci command npm install -g tslint typescript
|
|
||||||
- npmci npm prepare
|
|
||||||
- npmci npm install
|
|
||||||
- npmci command "tslint -c tslint.json ./ts/**/*.ts"
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- priv
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
stage: metadata
|
|
||||||
script:
|
|
||||||
- npmci trigger
|
|
||||||
only:
|
|
||||||
- tags
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
|
|
||||||
pages:
|
|
||||||
stage: metadata
|
|
||||||
script:
|
|
||||||
- npmci node install lts
|
|
||||||
- npmci command npm install -g @gitzone/tsdoc
|
|
||||||
- npmci npm prepare
|
|
||||||
- npmci npm install
|
|
||||||
- npmci command tsdoc
|
|
||||||
tags:
|
|
||||||
- lossless
|
|
||||||
- docker
|
|
||||||
- notpriv
|
|
||||||
only:
|
|
||||||
- tags
|
|
||||||
artifacts:
|
|
||||||
expire_in: 1 week
|
|
||||||
paths:
|
|
||||||
- public
|
|
||||||
allow_failure: true
|
|
4
.vscode/launch.json
vendored
4
.vscode/launch.json
vendored
@@ -8,7 +8,7 @@
|
|||||||
"args": [
|
"args": [
|
||||||
"${relativeFile}"
|
"${relativeFile}"
|
||||||
],
|
],
|
||||||
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
"runtimeArgs": ["-r", "@git.zone/tsrun"],
|
||||||
"cwd": "${workspaceRoot}",
|
"cwd": "${workspaceRoot}",
|
||||||
"protocol": "inspector",
|
"protocol": "inspector",
|
||||||
"internalConsoleOptions": "openOnSessionStart"
|
"internalConsoleOptions": "openOnSessionStart"
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
"args": [
|
"args": [
|
||||||
"test/test.ts"
|
"test/test.ts"
|
||||||
],
|
],
|
||||||
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
"runtimeArgs": ["-r", "@git.zone/tsrun"],
|
||||||
"cwd": "${workspaceRoot}",
|
"cwd": "${workspaceRoot}",
|
||||||
"protocol": "inspector",
|
"protocol": "inspector",
|
||||||
"internalConsoleOptions": "openOnSessionStart"
|
"internalConsoleOptions": "openOnSessionStart"
|
||||||
|
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
@@ -15,7 +15,7 @@
|
|||||||
"properties": {
|
"properties": {
|
||||||
"projectType": {
|
"projectType": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": ["website", "element", "service", "npm"]
|
"enum": ["website", "element", "service", "npm", "wcc"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
102
changelog.md
Normal file
102
changelog.md
Normal file
@@ -0,0 +1,102 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-12-04 - 2.0.29 - fix(core)
|
||||||
|
No changes detected in the codebase.
|
||||||
|
|
||||||
|
|
||||||
|
## 2024-12-04 - 2.0.28 - fix(tswatch)
|
||||||
|
Add logging to notify folder watcher creation and building processes
|
||||||
|
|
||||||
|
- Logging added to notify the creation of folder watchers.
|
||||||
|
- Logging added to indicate the start of the building process for folders.
|
||||||
|
|
||||||
|
## 2024-12-04 - 2.0.27 - fix(core)
|
||||||
|
Refactor watch mode commands and exports
|
||||||
|
|
||||||
|
- Updated watch mode names in CLI and type definitions for consistency.
|
||||||
|
- Added export for smartfile plugin.
|
||||||
|
- Ensured updated command logic is applied during CLI operations.
|
||||||
|
|
||||||
|
## 2024-12-04 - 2.0.26 - fix(core)
|
||||||
|
Refactor watch modes and update dependencies
|
||||||
|
|
||||||
|
- Updated dependencies in package.json
|
||||||
|
- Refactored watch mode names in interfaces and classes
|
||||||
|
- Refactored CLI commands to use new watch mode names
|
||||||
|
- Added import for smartfile in tswatch.plugins.ts
|
||||||
|
|
||||||
|
## 2024-10-27 - 2.0.25 - fix(typescript)
|
||||||
|
Remove unnecessary reference types in TypeScript declaration files
|
||||||
|
|
||||||
|
- Removed unnecessary comment line from TypeScript declaration files.
|
||||||
|
|
||||||
|
## 2024-10-27 - 2.0.24 - fix(core)
|
||||||
|
Remove .gitlab-ci.yml and update dependencies in package.json
|
||||||
|
|
||||||
|
- Deleted .gitlab-ci.yml which contained CI/CD configuration settings.
|
||||||
|
- Updated various dependencies and devDependencies in package.json to newer versions.
|
||||||
|
|
||||||
|
## 2024-01-28 to 2024-01-09 - 2.0.14 to 2.0.23 - Core
|
||||||
|
Several updates to the core functionality.
|
||||||
|
|
||||||
|
- Updated core functionality for efficiency and stability.
|
||||||
|
|
||||||
|
## 2023-09-21 to 2023-01-28 - 2.0.8 to 2.0.13 - Core
|
||||||
|
Core system updates and fixes.
|
||||||
|
|
||||||
|
- Continuous updates to core functionality for improved performance.
|
||||||
|
|
||||||
|
## 2023-03-31 to 2022-08-04 - 2.0.0 to 2.0.7 - Core
|
||||||
|
Enhanced core operations.
|
||||||
|
|
||||||
|
- Regular core updates to address performance and reliability.
|
||||||
|
|
||||||
|
## 2022-05-04 - 1.0.81 - Core
|
||||||
|
Introduction of a breaking change in the core system.
|
||||||
|
|
||||||
|
- Switched to gitzone v2 generation tools.
|
||||||
|
|
||||||
|
## 2022-04-21 to 2022-03-18 - 1.0.62 to 1.0.80 - Core
|
||||||
|
Routine updates to core operations.
|
||||||
|
|
||||||
|
- Various core fixes enhancing stability and function.
|
||||||
|
|
||||||
|
## 2022-03-14 to 2022-03-18 - 1.0.61 to 1.0.75 - Core
|
||||||
|
Further adjustments to core functionality.
|
||||||
|
|
||||||
|
- Fixes across multiple modules in core.
|
||||||
|
|
||||||
|
## 2021-08-17 to 2020-07-07 - 1.0.46 to 1.0.60 - Core
|
||||||
|
Core component updates.
|
||||||
|
|
||||||
|
- Consistent core updates to refine performance.
|
||||||
|
|
||||||
|
## 2020-07-04 to 2020-05-22 - 1.0.39 to 1.0.45 - Core
|
||||||
|
Incremental updates to core systems.
|
||||||
|
|
||||||
|
- Enhanced features within the core for better integration.
|
||||||
|
|
||||||
|
## 2020-03-13 to 2020-03-05 - 1.0.30 to 1.0.38 - Core
|
||||||
|
Stabilizing and refining core functions.
|
||||||
|
|
||||||
|
- Series of core fixes improving overall system durability.
|
||||||
|
|
||||||
|
## 2019-10-14 to 2019-10-12 - 1.0.21 to 1.0.29 - Core
|
||||||
|
Tweaks and enhancements to the core mechanics.
|
||||||
|
|
||||||
|
- Continued improvements in core system support services.
|
||||||
|
|
||||||
|
## 2019-05-28 to 2019-05-06 - 1.0.10 to 1.0.20 - Core
|
||||||
|
Core module enhancements and fixes.
|
||||||
|
|
||||||
|
- Several iterations to the core functionality for increased resilience.
|
||||||
|
|
||||||
|
## 2019-05-06 to 2019-05-08 - 1.0.5 to 1.0.9 - Core
|
||||||
|
Regular updates ensuring core integrity.
|
||||||
|
|
||||||
|
- Stability improvements within the core services.
|
||||||
|
|
||||||
|
## 2018-10-28 - 1.0.1 to 1.0.3 - Core
|
||||||
|
Initial setup and fixes to the core.
|
||||||
|
|
||||||
|
- Foundational updates to core functionality.
|
4
cli.child.ts
Normal file
4
cli.child.ts
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
process.env.CLI_CALL = 'true';
|
||||||
|
import * as cliTool from './ts/index.js';
|
||||||
|
cliTool.runCli();
|
2
cli.js
2
cli.js
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
process.env.CLI_CALL = 'true';
|
process.env.CLI_CALL = 'true';
|
||||||
const cliTool = require('./dist_ts/index');
|
const cliTool = await import('./dist_ts/index.js');
|
||||||
cliTool.runCli();
|
cliTool.runCli();
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
process.env.CLI_CALL = 'true';
|
process.env.CLI_CALL = 'true';
|
||||||
require('@gitzone/tsrun');
|
|
||||||
const cliTool = require('./ts/index');
|
import * as tsrun from '@git.zone/tsrun';
|
||||||
cliTool.runCli();
|
tsrun.runPath('./cli.child.js', import.meta.url);
|
||||||
|
2
dist_ts/index.d.ts
vendored
2
dist_ts/index.d.ts
vendored
@@ -1,2 +0,0 @@
|
|||||||
export * from './tswatch.classes.tswatch';
|
|
||||||
import './tswatch.cli';
|
|
@@ -1,18 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
function __export(m) {
|
|
||||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
||||||
}
|
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
|
||||||
if (mod && mod.__esModule) return mod;
|
|
||||||
var result = {};
|
|
||||||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
||||||
result["default"] = mod;
|
|
||||||
return result;
|
|
||||||
};
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const early = __importStar(require("@pushrocks/early"));
|
|
||||||
early.start('tswatch');
|
|
||||||
__export(require("./tswatch.classes.tswatch"));
|
|
||||||
require("./tswatch.cli");
|
|
||||||
early.stop();
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7QUFBQSx3REFBMEM7QUFDMUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxTQUFTLENBQUMsQ0FBQztBQUN2QiwrQ0FBMEM7QUFDMUMseUJBQXVCO0FBQ3ZCLEtBQUssQ0FBQyxJQUFJLEVBQUUsQ0FBQyJ9
|
|
1
dist_ts/interfaces/index.d.ts
vendored
1
dist_ts/interfaces/index.d.ts
vendored
@@ -1 +0,0 @@
|
|||||||
export * from './interfaces.watchmodes';
|
|
@@ -1,3 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90cy9pbnRlcmZhY2VzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -1 +0,0 @@
|
|||||||
export declare type TWatchModes = 'test' | 'gitzone_npm' | 'gitzone_service' | 'gitzone_element' | 'gitzone_website' | 'echoSomething';
|
|
@@ -1,3 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW50ZXJmYWNlcy53YXRjaG1vZGVzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdHMvaW50ZXJmYWNlcy9pbnRlcmZhY2VzLndhdGNobW9kZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|
|
3
dist_ts/tswatch.classes.parcel.d.ts
vendored
3
dist_ts/tswatch.classes.parcel.d.ts
vendored
@@ -1,3 +0,0 @@
|
|||||||
export declare class Parcel {
|
|
||||||
start(): Promise<void>;
|
|
||||||
}
|
|
@@ -1,44 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
|
||||||
if (mod && mod.__esModule) return mod;
|
|
||||||
var result = {};
|
|
||||||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
||||||
result["default"] = mod;
|
|
||||||
return result;
|
|
||||||
};
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const plugins = __importStar(require("./tswatch.plugins"));
|
|
||||||
const paths = __importStar(require("./tswatch.paths"));
|
|
||||||
class Parcel {
|
|
||||||
async start() {
|
|
||||||
const entryFiles = plugins.path.join(paths.cwd, './html/index.html');
|
|
||||||
// Bundler options
|
|
||||||
const options = {
|
|
||||||
outDir: './dist_watch',
|
|
||||||
outFile: 'index.html',
|
|
||||||
publicUrl: '/',
|
|
||||||
watch: true,
|
|
||||||
cache: true,
|
|
||||||
cacheDir: '.nogit/.parcelcache',
|
|
||||||
contentHash: false,
|
|
||||||
global: 'moduleName',
|
|
||||||
minify: false,
|
|
||||||
scopeHoist: false,
|
|
||||||
target: 'browser',
|
|
||||||
bundleNodeModules: true,
|
|
||||||
https: null,
|
|
||||||
logLevel: 3,
|
|
||||||
hmr: true,
|
|
||||||
hmrPort: 3003,
|
|
||||||
sourceMaps: true,
|
|
||||||
hmrHostname: '',
|
|
||||||
detailedReport: false // Prints a detailed report of the bundles, assets, filesizes and times, defaults to false, reports are only printed if watch is disabled
|
|
||||||
};
|
|
||||||
const bundler = new plugins.parcel(entryFiles, options);
|
|
||||||
// Run the bundler, this returns the main bundle
|
|
||||||
// Use the events if you're using watch mode as this promise will only trigger once and not for every rebuild
|
|
||||||
const bundle = await bundler.serve(3002);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exports.Parcel = Parcel;
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHN3YXRjaC5jbGFzc2VzLnBhcmNlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3RzL3Rzd2F0Y2guY2xhc3Nlcy5wYXJjZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7O0FBQUEsMkRBQTZDO0FBQzdDLHVEQUF5QztBQUV6QyxNQUFhLE1BQU07SUFDVixLQUFLLENBQUMsS0FBSztRQUNoQixNQUFNLFVBQVUsR0FBRyxPQUFPLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsR0FBRyxFQUFFLG1CQUFtQixDQUFDLENBQUM7UUFFckUsa0JBQWtCO1FBQ2xCLE1BQU0sT0FBTyxHQUFpQztZQUM1QyxNQUFNLEVBQUUsY0FBYztZQUN0QixPQUFPLEVBQUUsWUFBWTtZQUNyQixTQUFTLEVBQUUsR0FBRztZQUNkLEtBQUssRUFBRSxJQUFJO1lBQ1gsS0FBSyxFQUFFLElBQUk7WUFDWCxRQUFRLEVBQUUscUJBQXFCO1lBQy9CLFdBQVcsRUFBRSxLQUFLO1lBQ2xCLE1BQU0sRUFBRSxZQUFZO1lBQ3BCLE1BQU0sRUFBRSxLQUFLO1lBQ2IsVUFBVSxFQUFFLEtBQUs7WUFDakIsTUFBTSxFQUFFLFNBQVM7WUFDakIsaUJBQWlCLEVBQUUsSUFBSTtZQUN2QixLQUFLLEVBQUUsSUFBSTtZQUNYLFFBQVEsRUFBRSxDQUFDO1lBQ1gsR0FBRyxFQUFFLElBQUk7WUFDVCxPQUFPLEVBQUUsSUFBSTtZQUNiLFVBQVUsRUFBRSxJQUFJO1lBQ2hCLFdBQVcsRUFBRSxFQUFFO1lBQ2YsY0FBYyxFQUFFLEtBQUssQ0FBQyx5SUFBeUk7U0FDaEssQ0FBQztRQUVGLE1BQU0sT0FBTyxHQUFHLElBQUksT0FBTyxDQUFDLE1BQU0sQ0FBQyxVQUFVLEVBQUUsT0FBTyxDQUFDLENBQUM7UUFFeEQsZ0RBQWdEO1FBQ2hELDZHQUE2RztRQUM3RyxNQUFNLE1BQU0sR0FBRyxNQUFNLE9BQU8sQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDM0MsQ0FBQztDQUNGO0FBakNELHdCQWlDQyJ9
|
|
17
dist_ts/tswatch.classes.tswatch.d.ts
vendored
17
dist_ts/tswatch.classes.tswatch.d.ts
vendored
@@ -1,17 +0,0 @@
|
|||||||
import * as plugins from './tswatch.plugins';
|
|
||||||
import * as interfaces from './interfaces';
|
|
||||||
import { Watcher } from './tswatch.classes.watcher';
|
|
||||||
export declare class TsWatch {
|
|
||||||
watchmode: interfaces.TWatchModes;
|
|
||||||
watcherMap: plugins.lik.ObjectMap<Watcher>;
|
|
||||||
smartserve: plugins.smartserve.SmartServe;
|
|
||||||
constructor(watchmodeArg: interfaces.TWatchModes);
|
|
||||||
/**
|
|
||||||
* starts the TsWatch instance
|
|
||||||
*/
|
|
||||||
start(): Promise<void>;
|
|
||||||
/**
|
|
||||||
* stops the execution of any active Watchers
|
|
||||||
*/
|
|
||||||
stop(): Promise<void>;
|
|
||||||
}
|
|
@@ -1,95 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
|
||||||
if (mod && mod.__esModule) return mod;
|
|
||||||
var result = {};
|
|
||||||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
||||||
result["default"] = mod;
|
|
||||||
return result;
|
|
||||||
};
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const plugins = __importStar(require("./tswatch.plugins"));
|
|
||||||
const paths = __importStar(require("./tswatch.paths"));
|
|
||||||
const tswatch_classes_watcher_1 = require("./tswatch.classes.watcher");
|
|
||||||
const tswatch_classes_parcel_1 = require("./tswatch.classes.parcel");
|
|
||||||
class TsWatch {
|
|
||||||
constructor(watchmodeArg) {
|
|
||||||
this.watcherMap = new plugins.lik.ObjectMap();
|
|
||||||
this.watchmode = watchmodeArg;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* starts the TsWatch instance
|
|
||||||
*/
|
|
||||||
async start() {
|
|
||||||
switch (this.watchmode) {
|
|
||||||
case 'test':
|
|
||||||
this.watcherMap.add(new tswatch_classes_watcher_1.Watcher({
|
|
||||||
filePathToWatch: paths.cwd,
|
|
||||||
commandToExecute: 'npm run test2',
|
|
||||||
timeout: null
|
|
||||||
}));
|
|
||||||
break;
|
|
||||||
case 'gitzone_npm':
|
|
||||||
this.watcherMap.add(new tswatch_classes_watcher_1.Watcher({
|
|
||||||
filePathToWatch: paths.cwd,
|
|
||||||
commandToExecute: 'npm run test',
|
|
||||||
timeout: null
|
|
||||||
}));
|
|
||||||
break;
|
|
||||||
case 'gitzone_element':
|
|
||||||
// lets create a standard server
|
|
||||||
console.log('bundling TypeScript files to "dist_watch" Note: This is for development only!');
|
|
||||||
const parcel = new tswatch_classes_parcel_1.Parcel();
|
|
||||||
await parcel.start();
|
|
||||||
break;
|
|
||||||
case 'gitzone_website':
|
|
||||||
this.watcherMap.add(new tswatch_classes_watcher_1.Watcher({
|
|
||||||
filePathToWatch: plugins.path.join(paths.cwd, './ts/'),
|
|
||||||
commandToExecute: 'npm run startTs',
|
|
||||||
timeout: null
|
|
||||||
}));
|
|
||||||
// client directory
|
|
||||||
this.watcherMap.add(new tswatch_classes_watcher_1.Watcher({
|
|
||||||
filePathToWatch: plugins.path.join(paths.cwd, './ts_web/'),
|
|
||||||
commandToExecute: 'npm run build',
|
|
||||||
timeout: null
|
|
||||||
}));
|
|
||||||
break;
|
|
||||||
case 'gitzone_service':
|
|
||||||
this.watcherMap.add(new tswatch_classes_watcher_1.Watcher({
|
|
||||||
filePathToWatch: plugins.path.join(paths.cwd, './ts/'),
|
|
||||||
commandToExecute: 'npm run startTs',
|
|
||||||
timeout: null
|
|
||||||
}));
|
|
||||||
break;
|
|
||||||
case 'echoSomething':
|
|
||||||
const tsWatchInstanceEchoSomething = new tswatch_classes_watcher_1.Watcher({
|
|
||||||
filePathToWatch: plugins.path.join(paths.cwd, './ts'),
|
|
||||||
commandToExecute: 'npm -v',
|
|
||||||
timeout: null
|
|
||||||
});
|
|
||||||
this.watcherMap.add(tsWatchInstanceEchoSomething);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
this.watcherMap.forEach(async (watcher) => {
|
|
||||||
await watcher.start();
|
|
||||||
});
|
|
||||||
if (this.smartserve) {
|
|
||||||
await this.smartserve.start();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* stops the execution of any active Watchers
|
|
||||||
*/
|
|
||||||
async stop() {
|
|
||||||
if (this.smartserve) {
|
|
||||||
await this.smartserve.stop();
|
|
||||||
}
|
|
||||||
this.watcherMap.forEach(async (watcher) => {
|
|
||||||
await watcher.stop();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exports.TsWatch = TsWatch;
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHN3YXRjaC5jbGFzc2VzLnRzd2F0Y2guanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy90c3dhdGNoLmNsYXNzZXMudHN3YXRjaC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7QUFBQSwyREFBNkM7QUFDN0MsdURBQXlDO0FBR3pDLHVFQUFvRDtBQUNwRCxxRUFBa0Q7QUFFbEQsTUFBYSxPQUFPO0lBS2xCLFlBQVksWUFBb0M7UUFIekMsZUFBVSxHQUFHLElBQUksT0FBTyxDQUFDLEdBQUcsQ0FBQyxTQUFTLEVBQVcsQ0FBQztRQUl2RCxJQUFJLENBQUMsU0FBUyxHQUFHLFlBQVksQ0FBQztJQUNoQyxDQUFDO0lBRUQ7O09BRUc7SUFDSSxLQUFLLENBQUMsS0FBSztRQUNoQixRQUFRLElBQUksQ0FBQyxTQUFTLEVBQUU7WUFDdEIsS0FBSyxNQUFNO2dCQUNULElBQUksQ0FBQyxVQUFVLENBQUMsR0FBRyxDQUNqQixJQUFJLGlDQUFPLENBQUM7b0JBQ1YsZUFBZSxFQUFFLEtBQUssQ0FBQyxHQUFHO29CQUMxQixnQkFBZ0IsRUFBRSxlQUFlO29CQUNqQyxPQUFPLEVBQUUsSUFBSTtpQkFDZCxDQUFDLENBQ0gsQ0FBQztnQkFDRixNQUFNO1lBQ1IsS0FBSyxhQUFhO2dCQUNoQixJQUFJLENBQUMsVUFBVSxDQUFDLEdBQUcsQ0FDakIsSUFBSSxpQ0FBTyxDQUFDO29CQUNWLGVBQWUsRUFBRSxLQUFLLENBQUMsR0FBRztvQkFDMUIsZ0JBQWdCLEVBQUUsY0FBYztvQkFDaEMsT0FBTyxFQUFFLElBQUk7aUJBQ2QsQ0FBQyxDQUNILENBQUM7Z0JBQ0YsTUFBTTtZQUNSLEtBQUssaUJBQWlCO2dCQUNwQixnQ0FBZ0M7Z0JBQ2hDLE9BQU8sQ0FBQyxHQUFHLENBQ1QsK0VBQStFLENBQ2hGLENBQUM7Z0JBQ0YsTUFBTSxNQUFNLEdBQUcsSUFBSSwrQkFBTSxFQUFFLENBQUM7Z0JBQzVCLE1BQU0sTUFBTSxDQUFDLEtBQUssRUFBRSxDQUFDO2dCQUNyQixNQUFNO1lBQ1IsS0FBSyxpQkFBaUI7Z0JBQ3BCLElBQUksQ0FBQyxVQUFVLENBQUMsR0FBRyxDQUNqQixJQUFJLGlDQUFPLENBQUM7b0JBQ1YsZUFBZSxFQUFFLE9BQU8sQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxHQUFHLEVBQUUsT0FBTyxDQUFDO29CQUN0RCxnQkFBZ0IsRUFBRSxpQkFBaUI7b0JBQ25DLE9BQU8sRUFBRSxJQUFJO2lCQUNkLENBQUMsQ0FDSCxDQUFDO2dCQUVGLG1CQUFtQjtnQkFDbkIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQ2pCLElBQUksaUNBQU8sQ0FBQztvQkFDVixlQUFlLEVBQUUsT0FBTyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLEdBQUcsRUFBRSxXQUFXLENBQUM7b0JBQzFELGdCQUFnQixFQUFFLGVBQWU7b0JBQ2pDLE9BQU8sRUFBRSxJQUFJO2lCQUNkLENBQUMsQ0FDSCxDQUFDO2dCQUNGLE1BQU07WUFDUixLQUFLLGlCQUFpQjtnQkFDcEIsSUFBSSxDQUFDLFVBQVUsQ0FBQyxHQUFHLENBQ2pCLElBQUksaUNBQU8sQ0FBQztvQkFDVixlQUFlLEVBQUUsT0FBTyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLEdBQUcsRUFBRSxPQUFPLENBQUM7b0JBQ3RELGdCQUFnQixFQUFFLGlCQUFpQjtvQkFDbkMsT0FBTyxFQUFFLElBQUk7aUJBQ2QsQ0FBQyxDQUNILENBQUM7Z0JBQ0YsTUFBTTtZQUNSLEtBQUssZUFBZTtnQkFDbEIsTUFBTSw0QkFBNEIsR0FBRyxJQUFJLGlDQUFPLENBQUM7b0JBQy9DLGVBQWUsRUFBRSxPQUFPLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsR0FBRyxFQUFFLE1BQU0sQ0FBQztvQkFDckQsZ0JBQWdCLEVBQUUsUUFBUTtvQkFDMUIsT0FBTyxFQUFFLElBQUk7aUJBQ2QsQ0FBQyxDQUFDO2dCQUNILElBQUksQ0FBQyxVQUFVLENBQUMsR0FBRyxDQUFDLDRCQUE0QixDQUFDLENBQUM7Z0JBQ2xELE1BQU07WUFDUjtnQkFDRSxNQUFNO1NBQ1Q7UUFDRCxJQUFJLENBQUMsVUFBVSxDQUFDLE9BQU8sQ0FBQyxLQUFLLEVBQUMsT0FBTyxFQUFDLEVBQUU7WUFDdEMsTUFBTSxPQUFPLENBQUMsS0FBSyxFQUFFLENBQUM7UUFDeEIsQ0FBQyxDQUFDLENBQUM7UUFDSCxJQUFJLElBQUksQ0FBQyxVQUFVLEVBQUU7WUFDbkIsTUFBTSxJQUFJLENBQUMsVUFBVSxDQUFDLEtBQUssRUFBRSxDQUFDO1NBQy9CO0lBQ0gsQ0FBQztJQUVEOztPQUVHO0lBQ0ksS0FBSyxDQUFDLElBQUk7UUFDZixJQUFJLElBQUksQ0FBQyxVQUFVLEVBQUU7WUFDbkIsTUFBTSxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksRUFBRSxDQUFDO1NBQzlCO1FBQ0QsSUFBSSxDQUFDLFVBQVUsQ0FBQyxPQUFPLENBQUMsS0FBSyxFQUFDLE9BQU8sRUFBQyxFQUFFO1lBQ3RDLE1BQU0sT0FBTyxDQUFDLElBQUksRUFBRSxDQUFDO1FBQ3ZCLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztDQUNGO0FBakdELDBCQWlHQyJ9
|
|
35
dist_ts/tswatch.classes.watcher.d.ts
vendored
35
dist_ts/tswatch.classes.watcher.d.ts
vendored
@@ -1,35 +0,0 @@
|
|||||||
export declare type TCommandFunction = () => Promise<void>;
|
|
||||||
export interface IWatcherConstructorOptions {
|
|
||||||
filePathToWatch: string;
|
|
||||||
commandToExecute: string | TCommandFunction;
|
|
||||||
timeout?: number;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* A watcher keeps track of one child execution
|
|
||||||
*/
|
|
||||||
export declare class Watcher {
|
|
||||||
/**
|
|
||||||
* used to execute shell commands
|
|
||||||
*/
|
|
||||||
private smartshellInstance;
|
|
||||||
private currentExecution;
|
|
||||||
private smartchokWatcher;
|
|
||||||
private options;
|
|
||||||
constructor(optionsArg: IWatcherConstructorOptions);
|
|
||||||
/**
|
|
||||||
* start the file
|
|
||||||
*/
|
|
||||||
start(): Promise<void>;
|
|
||||||
/**
|
|
||||||
* updates the current execution
|
|
||||||
*/
|
|
||||||
private updateCurrentExecution;
|
|
||||||
/**
|
|
||||||
* this method sets up a clean exit strategy
|
|
||||||
*/
|
|
||||||
private setupCleanup;
|
|
||||||
/**
|
|
||||||
* stops the watcher
|
|
||||||
*/
|
|
||||||
stop(): Promise<void>;
|
|
||||||
}
|
|
@@ -1,99 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
|
||||||
if (mod && mod.__esModule) return mod;
|
|
||||||
var result = {};
|
|
||||||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
||||||
result["default"] = mod;
|
|
||||||
return result;
|
|
||||||
};
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const plugins = __importStar(require("./tswatch.plugins"));
|
|
||||||
const tswatch_logging_1 = require("./tswatch.logging");
|
|
||||||
/**
|
|
||||||
* A watcher keeps track of one child execution
|
|
||||||
*/
|
|
||||||
class Watcher {
|
|
||||||
constructor(optionsArg) {
|
|
||||||
/**
|
|
||||||
* used to execute shell commands
|
|
||||||
*/
|
|
||||||
this.smartshellInstance = new plugins.smartshell.Smartshell({
|
|
||||||
executor: 'bash'
|
|
||||||
});
|
|
||||||
this.smartchokWatcher = new plugins.smartchok.Smartchok([], {});
|
|
||||||
this.options = optionsArg;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* start the file
|
|
||||||
*/
|
|
||||||
async start() {
|
|
||||||
await this.setupCleanup();
|
|
||||||
console.log(`Looking at ${this.options.filePathToWatch} for changes`);
|
|
||||||
this.smartchokWatcher.add([this.options.filePathToWatch]); // __dirname refers to the directory of this very file
|
|
||||||
await this.smartchokWatcher.start();
|
|
||||||
const changeObservable = await this.smartchokWatcher.getObservableFor('change');
|
|
||||||
changeObservable.subscribe(() => {
|
|
||||||
this.updateCurrentExecution();
|
|
||||||
});
|
|
||||||
await this.updateCurrentExecution();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* updates the current execution
|
|
||||||
*/
|
|
||||||
async updateCurrentExecution() {
|
|
||||||
if (typeof this.options.commandToExecute === 'string') {
|
|
||||||
if (this.currentExecution) {
|
|
||||||
tswatch_logging_1.logger.log('ok', `reexecuting ${this.options.commandToExecute}`);
|
|
||||||
this.currentExecution.kill();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
tswatch_logging_1.logger.log('ok', `executing ${this.options.commandToExecute} for the first time`);
|
|
||||||
}
|
|
||||||
this.currentExecution = await this.smartshellInstance.execStreaming(this.options.commandToExecute);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
console.log('cannot run execution task');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* this method sets up a clean exit strategy
|
|
||||||
*/
|
|
||||||
async setupCleanup() {
|
|
||||||
const cleanup = () => {
|
|
||||||
if (this.currentExecution) {
|
|
||||||
process.kill(-this.currentExecution.childProcess.pid);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
process.on('exit', () => {
|
|
||||||
console.log('');
|
|
||||||
console.log('now exiting!');
|
|
||||||
cleanup();
|
|
||||||
process.exit(0);
|
|
||||||
});
|
|
||||||
process.on('SIGINT', () => {
|
|
||||||
console.log('');
|
|
||||||
console.log('ok! got SIGINT We are exiting! Just cleaning up to exit neatly :)');
|
|
||||||
cleanup();
|
|
||||||
process.exit(0);
|
|
||||||
});
|
|
||||||
// handle timeout
|
|
||||||
if (this.options.timeout) {
|
|
||||||
plugins.smartdelay.delayFor(this.options.timeout).then(() => {
|
|
||||||
console.log(`timed out afer ${this.options.timeout} milliseconds! exiting!`);
|
|
||||||
cleanup();
|
|
||||||
process.exit(0);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* stops the watcher
|
|
||||||
*/
|
|
||||||
async stop() {
|
|
||||||
await this.smartchokWatcher.stop();
|
|
||||||
if (this.currentExecution && !this.currentExecution.childProcess.killed) {
|
|
||||||
process.kill(-this.currentExecution.childProcess.pid);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exports.Watcher = Watcher;
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHN3YXRjaC5jbGFzc2VzLndhdGNoZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy90c3dhdGNoLmNsYXNzZXMud2F0Y2hlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7QUFBQSwyREFBNkM7QUFDN0MsdURBQTJDO0FBVTNDOztHQUVHO0FBQ0gsTUFBYSxPQUFPO0lBWWxCLFlBQVksVUFBc0M7UUFYbEQ7O1dBRUc7UUFDSyx1QkFBa0IsR0FBRyxJQUFJLE9BQU8sQ0FBQyxVQUFVLENBQUMsVUFBVSxDQUFDO1lBQzdELFFBQVEsRUFBRSxNQUFNO1NBQ2pCLENBQUMsQ0FBQztRQUdLLHFCQUFnQixHQUFHLElBQUksT0FBTyxDQUFDLFNBQVMsQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLEVBQUUsQ0FBQyxDQUFDO1FBSWpFLElBQUksQ0FBQyxPQUFPLEdBQUcsVUFBVSxDQUFDO0lBQzVCLENBQUM7SUFFRDs7T0FFRztJQUNJLEtBQUssQ0FBQyxLQUFLO1FBQ2hCLE1BQU0sSUFBSSxDQUFDLFlBQVksRUFBRSxDQUFDO1FBQzFCLE9BQU8sQ0FBQyxHQUFHLENBQUMsY0FBYyxJQUFJLENBQUMsT0FBTyxDQUFDLGVBQWUsY0FBYyxDQUFDLENBQUM7UUFDdEUsSUFBSSxDQUFDLGdCQUFnQixDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsZUFBZSxDQUFDLENBQUMsQ0FBQyxDQUFDLHNEQUFzRDtRQUNqSCxNQUFNLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxLQUFLLEVBQUUsQ0FBQztRQUNwQyxNQUFNLGdCQUFnQixHQUFHLE1BQU0sSUFBSSxDQUFDLGdCQUFnQixDQUFDLGdCQUFnQixDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBQ2hGLGdCQUFnQixDQUFDLFNBQVMsQ0FBQyxHQUFHLEVBQUU7WUFDOUIsSUFBSSxDQUFDLHNCQUFzQixFQUFFLENBQUM7UUFDaEMsQ0FBQyxDQUFDLENBQUM7UUFDSCxNQUFNLElBQUksQ0FBQyxzQkFBc0IsRUFBRSxDQUFDO0lBQ3RDLENBQUM7SUFFRDs7T0FFRztJQUNLLEtBQUssQ0FBQyxzQkFBc0I7UUFDbEMsSUFBSSxPQUFPLElBQUksQ0FBQyxPQUFPLENBQUMsZ0JBQWdCLEtBQUssUUFBUSxFQUFFO1lBQ3JELElBQUksSUFBSSxDQUFDLGdCQUFnQixFQUFFO2dCQUN6Qix3QkFBTSxDQUFDLEdBQUcsQ0FBQyxJQUFJLEVBQUUsZUFBZSxJQUFJLENBQUMsT0FBTyxDQUFDLGdCQUFnQixFQUFFLENBQUMsQ0FBQztnQkFDakUsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksRUFBRSxDQUFDO2FBQzlCO2lCQUFNO2dCQUNMLHdCQUFNLENBQUMsR0FBRyxDQUFDLElBQUksRUFBRSxhQUFhLElBQUksQ0FBQyxPQUFPLENBQUMsZ0JBQWdCLHFCQUFxQixDQUFDLENBQUM7YUFDbkY7WUFDRCxJQUFJLENBQUMsZ0JBQWdCLEdBQUcsTUFBTSxJQUFJLENBQUMsa0JBQWtCLENBQUMsYUFBYSxDQUNqRSxJQUFJLENBQUMsT0FBTyxDQUFDLGdCQUFnQixDQUM5QixDQUFDO1NBQ0g7YUFBTTtZQUNMLE9BQU8sQ0FBQyxHQUFHLENBQUMsMkJBQTJCLENBQUMsQ0FBQztTQUMxQztJQUNILENBQUM7SUFFRDs7T0FFRztJQUNLLEtBQUssQ0FBQyxZQUFZO1FBQ3hCLE1BQU0sT0FBTyxHQUFHLEdBQUcsRUFBRTtZQUNuQixJQUFJLElBQUksQ0FBQyxnQkFBZ0IsRUFBRTtnQkFDekIsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxZQUFZLENBQUMsR0FBRyxDQUFDLENBQUM7YUFDdkQ7UUFDSCxDQUFDLENBQUM7UUFDRixPQUFPLENBQUMsRUFBRSxDQUFDLE1BQU0sRUFBRSxHQUFHLEVBQUU7WUFDdEIsT0FBTyxDQUFDLEdBQUcsQ0FBQyxFQUFFLENBQUMsQ0FBQztZQUNoQixPQUFPLENBQUMsR0FBRyxDQUFDLGNBQWMsQ0FBQyxDQUFDO1lBQzVCLE9BQU8sRUFBRSxDQUFDO1lBQ1YsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUNsQixDQUFDLENBQUMsQ0FBQztRQUNILE9BQU8sQ0FBQyxFQUFFLENBQUMsUUFBUSxFQUFFLEdBQUcsRUFBRTtZQUN4QixPQUFPLENBQUMsR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDO1lBQ2hCLE9BQU8sQ0FBQyxHQUFHLENBQUMsbUVBQW1FLENBQUMsQ0FBQztZQUNqRixPQUFPLEVBQUUsQ0FBQztZQUNWLE9BQU8sQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDbEIsQ0FBQyxDQUFDLENBQUM7UUFFSCxpQkFBaUI7UUFDakIsSUFBSSxJQUFJLENBQUMsT0FBTyxDQUFDLE9BQU8sRUFBRTtZQUN4QixPQUFPLENBQUMsVUFBVSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FBQyxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUU7Z0JBQzFELE9BQU8sQ0FBQyxHQUFHLENBQUMsa0JBQWtCLElBQUksQ0FBQyxPQUFPLENBQUMsT0FBTyx5QkFBeUIsQ0FBQyxDQUFDO2dCQUM3RSxPQUFPLEVBQUUsQ0FBQztnQkFDVixPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDO1lBQ2xCLENBQUMsQ0FBQyxDQUFDO1NBQ0o7SUFDSCxDQUFDO0lBRUQ7O09BRUc7SUFDSSxLQUFLLENBQUMsSUFBSTtRQUNmLE1BQU0sSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksRUFBRSxDQUFDO1FBQ25DLElBQUksSUFBSSxDQUFDLGdCQUFnQixJQUFJLENBQUMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLFlBQVksQ0FBQyxNQUFNLEVBQUU7WUFDdkUsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxZQUFZLENBQUMsR0FBRyxDQUFDLENBQUM7U0FDdkQ7SUFDSCxDQUFDO0NBQ0Y7QUEzRkQsMEJBMkZDIn0=
|
|
1
dist_ts/tswatch.cli.d.ts
vendored
1
dist_ts/tswatch.cli.d.ts
vendored
@@ -1 +0,0 @@
|
|||||||
export {};
|
|
@@ -1,41 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
|
||||||
if (mod && mod.__esModule) return mod;
|
|
||||||
var result = {};
|
|
||||||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
||||||
result["default"] = mod;
|
|
||||||
return result;
|
|
||||||
};
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const plugins = __importStar(require("./tswatch.plugins"));
|
|
||||||
const tswatch_logging_1 = require("./tswatch.logging");
|
|
||||||
const tswatch_classes_tswatch_1 = require("./tswatch.classes.tswatch");
|
|
||||||
const tswatchCli = new plugins.smartcli.Smartcli();
|
|
||||||
// standard behaviour will assume gitzone setup
|
|
||||||
tswatchCli.addCommand('element').subscribe(async (argvArg) => {
|
|
||||||
tswatch_logging_1.logger.log('info', `running watch task for a gitzone element project`);
|
|
||||||
const tsWatch = new tswatch_classes_tswatch_1.TsWatch('gitzone_element');
|
|
||||||
await tsWatch.start();
|
|
||||||
});
|
|
||||||
tswatchCli.addCommand('npm').subscribe(async (argvArg) => {
|
|
||||||
tswatch_logging_1.logger.log('info', `running watch task for a gitzone element project`);
|
|
||||||
const tsWatch = new tswatch_classes_tswatch_1.TsWatch('gitzone_npm');
|
|
||||||
await tsWatch.start();
|
|
||||||
});
|
|
||||||
tswatchCli.addCommand('service').subscribe(async (argvArg) => {
|
|
||||||
tswatch_logging_1.logger.log('info', `running test task`);
|
|
||||||
const tsWatch = new tswatch_classes_tswatch_1.TsWatch('gitzone_service');
|
|
||||||
await tsWatch.start();
|
|
||||||
});
|
|
||||||
tswatchCli.addCommand('test').subscribe(async (argvArg) => {
|
|
||||||
tswatch_logging_1.logger.log('info', `running test task`);
|
|
||||||
const tsWatch = new tswatch_classes_tswatch_1.TsWatch('test');
|
|
||||||
await tsWatch.start();
|
|
||||||
});
|
|
||||||
tswatchCli.addCommand('website').subscribe(async (argvArg) => {
|
|
||||||
tswatch_logging_1.logger.log('info', `running watch task for a gitzone website project`);
|
|
||||||
const tsWatch = new tswatch_classes_tswatch_1.TsWatch('gitzone_website');
|
|
||||||
await tsWatch.start();
|
|
||||||
});
|
|
||||||
tswatchCli.startParse();
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHN3YXRjaC5jbGkuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy90c3dhdGNoLmNsaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7QUFBQSwyREFBNkM7QUFFN0MsdURBQTJDO0FBRTNDLHVFQUFvRDtBQUVwRCxNQUFNLFVBQVUsR0FBRyxJQUFJLE9BQU8sQ0FBQyxRQUFRLENBQUMsUUFBUSxFQUFFLENBQUM7QUFFbkQsK0NBQStDO0FBRS9DLFVBQVUsQ0FBQyxVQUFVLENBQUMsU0FBUyxDQUFDLENBQUMsU0FBUyxDQUFDLEtBQUssRUFBQyxPQUFPLEVBQUMsRUFBRTtJQUN6RCx3QkFBTSxDQUFDLEdBQUcsQ0FBQyxNQUFNLEVBQUUsa0RBQWtELENBQUMsQ0FBQztJQUN2RSxNQUFNLE9BQU8sR0FBRyxJQUFJLGlDQUFPLENBQUMsaUJBQWlCLENBQUMsQ0FBQztJQUMvQyxNQUFNLE9BQU8sQ0FBQyxLQUFLLEVBQUUsQ0FBQztBQUN4QixDQUFDLENBQUMsQ0FBQztBQUVILFVBQVUsQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLENBQUMsU0FBUyxDQUFDLEtBQUssRUFBQyxPQUFPLEVBQUMsRUFBRTtJQUNyRCx3QkFBTSxDQUFDLEdBQUcsQ0FBQyxNQUFNLEVBQUUsa0RBQWtELENBQUMsQ0FBQztJQUN2RSxNQUFNLE9BQU8sR0FBRyxJQUFJLGlDQUFPLENBQUMsYUFBYSxDQUFDLENBQUM7SUFDM0MsTUFBTSxPQUFPLENBQUMsS0FBSyxFQUFFLENBQUM7QUFDeEIsQ0FBQyxDQUFDLENBQUM7QUFFSCxVQUFVLENBQUMsVUFBVSxDQUFDLFNBQVMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxLQUFLLEVBQUMsT0FBTyxFQUFDLEVBQUU7SUFDekQsd0JBQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxFQUFFLG1CQUFtQixDQUFDLENBQUM7SUFDeEMsTUFBTSxPQUFPLEdBQUcsSUFBSSxpQ0FBTyxDQUFDLGlCQUFpQixDQUFDLENBQUM7SUFDL0MsTUFBTSxPQUFPLENBQUMsS0FBSyxFQUFFLENBQUM7QUFDeEIsQ0FBQyxDQUFDLENBQUM7QUFFSCxVQUFVLENBQUMsVUFBVSxDQUFDLE1BQU0sQ0FBQyxDQUFDLFNBQVMsQ0FBQyxLQUFLLEVBQUMsT0FBTyxFQUFDLEVBQUU7SUFDdEQsd0JBQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxFQUFFLG1CQUFtQixDQUFDLENBQUM7SUFDeEMsTUFBTSxPQUFPLEdBQUcsSUFBSSxpQ0FBTyxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBQ3BDLE1BQU0sT0FBTyxDQUFDLEtBQUssRUFBRSxDQUFDO0FBQ3hCLENBQUMsQ0FBQyxDQUFDO0FBRUgsVUFBVSxDQUFDLFVBQVUsQ0FBQyxTQUFTLENBQUMsQ0FBQyxTQUFTLENBQUMsS0FBSyxFQUFDLE9BQU8sRUFBQyxFQUFFO0lBQ3pELHdCQUFNLENBQUMsR0FBRyxDQUFDLE1BQU0sRUFBRSxrREFBa0QsQ0FBQyxDQUFDO0lBQ3ZFLE1BQU0sT0FBTyxHQUFHLElBQUksaUNBQU8sQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDO0lBQy9DLE1BQU0sT0FBTyxDQUFDLEtBQUssRUFBRSxDQUFDO0FBQ3hCLENBQUMsQ0FBQyxDQUFDO0FBRUgsVUFBVSxDQUFDLFVBQVUsRUFBRSxDQUFDIn0=
|
|
2
dist_ts/tswatch.logging.d.ts
vendored
2
dist_ts/tswatch.logging.d.ts
vendored
@@ -1,2 +0,0 @@
|
|||||||
import * as plugins from './tswatch.plugins';
|
|
||||||
export declare const logger: plugins.smartlog.Smartlog;
|
|
@@ -1,23 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
|
||||||
if (mod && mod.__esModule) return mod;
|
|
||||||
var result = {};
|
|
||||||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
||||||
result["default"] = mod;
|
|
||||||
return result;
|
|
||||||
};
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const plugins = __importStar(require("./tswatch.plugins"));
|
|
||||||
exports.logger = new plugins.smartlog.Smartlog({
|
|
||||||
logContext: {
|
|
||||||
company: 'Some Company',
|
|
||||||
companyunit: 'Some CompanyUnit',
|
|
||||||
containerName: 'Some Containername',
|
|
||||||
environment: 'local',
|
|
||||||
runtime: 'node',
|
|
||||||
zone: 'gitzone'
|
|
||||||
},
|
|
||||||
minimumLogLevel: 'silly'
|
|
||||||
});
|
|
||||||
exports.logger.addLogDestination(new plugins.smartlogDestinationLocal.DestinationLocal());
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHN3YXRjaC5sb2dnaW5nLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvdHN3YXRjaC5sb2dnaW5nLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7OztBQUFBLDJEQUE2QztBQUVoQyxRQUFBLE1BQU0sR0FBRyxJQUFJLE9BQU8sQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUFDO0lBQ2xELFVBQVUsRUFBRTtRQUNWLE9BQU8sRUFBRSxjQUFjO1FBQ3ZCLFdBQVcsRUFBRSxrQkFBa0I7UUFDL0IsYUFBYSxFQUFFLG9CQUFvQjtRQUNuQyxXQUFXLEVBQUUsT0FBTztRQUNwQixPQUFPLEVBQUUsTUFBTTtRQUNmLElBQUksRUFBRSxTQUFTO0tBQ2hCO0lBQ0QsZUFBZSxFQUFFLE9BQU87Q0FDekIsQ0FBQyxDQUFDO0FBRUgsY0FBTSxDQUFDLGlCQUFpQixDQUFDLElBQUksT0FBTyxDQUFDLHdCQUF3QixDQUFDLGdCQUFnQixFQUFFLENBQUMsQ0FBQyJ9
|
|
1
dist_ts/tswatch.paths.d.ts
vendored
1
dist_ts/tswatch.paths.d.ts
vendored
@@ -1 +0,0 @@
|
|||||||
export declare const cwd: string;
|
|
@@ -1,4 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
exports.cwd = process.cwd();
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHN3YXRjaC5wYXRocy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3RzL3Rzd2F0Y2gucGF0aHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFFYSxRQUFBLEdBQUcsR0FBRyxPQUFPLENBQUMsR0FBRyxFQUFFLENBQUMifQ==
|
|
14
dist_ts/tswatch.plugins.d.ts
vendored
14
dist_ts/tswatch.plugins.d.ts
vendored
@@ -1,14 +0,0 @@
|
|||||||
import * as path from 'path';
|
|
||||||
export { path };
|
|
||||||
import * as lik from '@pushrocks/lik';
|
|
||||||
import * as smartchok from '@pushrocks/smartchok';
|
|
||||||
import * as smartcli from '@pushrocks/smartcli';
|
|
||||||
import * as smartdelay from '@pushrocks/smartdelay';
|
|
||||||
import * as smartlog from '@pushrocks/smartlog';
|
|
||||||
import * as smartlogDestinationLocal from '@pushrocks/smartlog-destination-local';
|
|
||||||
import * as smartserve from '@pushrocks/smartserve';
|
|
||||||
import * as smartshell from '@pushrocks/smartshell';
|
|
||||||
import * as taskbuffer from '@pushrocks/taskbuffer';
|
|
||||||
export { lik, smartchok, smartcli, smartdelay, smartlog, smartlogDestinationLocal, smartserve, smartshell, taskbuffer };
|
|
||||||
import parcel from 'parcel-bundler';
|
|
||||||
export { parcel };
|
|
@@ -1,37 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
|
||||||
if (mod && mod.__esModule) return mod;
|
|
||||||
var result = {};
|
|
||||||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
||||||
result["default"] = mod;
|
|
||||||
return result;
|
|
||||||
};
|
|
||||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
||||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
||||||
};
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
const path = __importStar(require("path"));
|
|
||||||
exports.path = path;
|
|
||||||
// @pushrocks scope
|
|
||||||
const lik = __importStar(require("@pushrocks/lik"));
|
|
||||||
exports.lik = lik;
|
|
||||||
const smartchok = __importStar(require("@pushrocks/smartchok"));
|
|
||||||
exports.smartchok = smartchok;
|
|
||||||
const smartcli = __importStar(require("@pushrocks/smartcli"));
|
|
||||||
exports.smartcli = smartcli;
|
|
||||||
const smartdelay = __importStar(require("@pushrocks/smartdelay"));
|
|
||||||
exports.smartdelay = smartdelay;
|
|
||||||
const smartlog = __importStar(require("@pushrocks/smartlog"));
|
|
||||||
exports.smartlog = smartlog;
|
|
||||||
const smartlogDestinationLocal = __importStar(require("@pushrocks/smartlog-destination-local"));
|
|
||||||
exports.smartlogDestinationLocal = smartlogDestinationLocal;
|
|
||||||
const smartserve = __importStar(require("@pushrocks/smartserve"));
|
|
||||||
exports.smartserve = smartserve;
|
|
||||||
const smartshell = __importStar(require("@pushrocks/smartshell"));
|
|
||||||
exports.smartshell = smartshell;
|
|
||||||
const taskbuffer = __importStar(require("@pushrocks/taskbuffer"));
|
|
||||||
exports.taskbuffer = taskbuffer;
|
|
||||||
// third party scope
|
|
||||||
const parcel_bundler_1 = __importDefault(require("parcel-bundler"));
|
|
||||||
exports.parcel = parcel_bundler_1.default;
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHN3YXRjaC5wbHVnaW5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvdHN3YXRjaC5wbHVnaW5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7OztBQUFBLDJDQUE2QjtBQUNwQixvQkFBSTtBQUViLG1CQUFtQjtBQUNuQixvREFBc0M7QUFXcEMsa0JBQUc7QUFWTCxnRUFBa0Q7QUFXaEQsOEJBQVM7QUFWWCw4REFBZ0Q7QUFXOUMsNEJBQVE7QUFWVixrRUFBb0Q7QUFXbEQsZ0NBQVU7QUFWWiw4REFBZ0Q7QUFXOUMsNEJBQVE7QUFWVixnR0FBa0Y7QUFXaEYsNERBQXdCO0FBVjFCLGtFQUFvRDtBQVdsRCxnQ0FBVTtBQVZaLGtFQUFvRDtBQVdsRCxnQ0FBVTtBQVZaLGtFQUFvRDtBQVdsRCxnQ0FBVTtBQUdaLG9CQUFvQjtBQUNwQixvRUFBb0M7QUFFM0IsaUJBRkYsd0JBQU0sQ0FFRSJ9
|
|
@@ -10,7 +10,7 @@
|
|||||||
"gitscope": "gitzone",
|
"gitscope": "gitzone",
|
||||||
"gitrepo": "tswatch",
|
"gitrepo": "tswatch",
|
||||||
"shortDescription": "watch typescript projects during development",
|
"shortDescription": "watch typescript projects during development",
|
||||||
"npmPackagename": "@gitzone/tswatch",
|
"npmPackagename": "@git.zone/tswatch",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
10042
package-lock.json
generated
10042
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
46
package.json
46
package.json
@@ -1,10 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "@gitzone/tswatch",
|
"name": "@git.zone/tswatch",
|
||||||
"version": "1.0.49",
|
"version": "2.0.29",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "watch typescript projects during development",
|
"description": "watch typescript projects during development",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
"typings": "dist_ts/index.d.ts",
|
"typings": "dist_ts/index.d.ts",
|
||||||
|
"type": "module",
|
||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -12,30 +13,28 @@
|
|||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/ --web)",
|
"test": "(tstest test/ --web)",
|
||||||
"build": "(tsbuild --web)"
|
"build": "(tsbuild --web --allowimplicitany)"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsbuild": "^2.1.24",
|
"@git.zone/tsbuild": "^2.2.0",
|
||||||
"@gitzone/tstest": "^1.0.33",
|
"@git.zone/tstest": "^1.0.90",
|
||||||
"@pushrocks/tapbundle": "^3.2.1",
|
"@push.rocks/tapbundle": "^5.5.3",
|
||||||
"@types/node": "^14.0.14",
|
"@types/node": "^22.10.1"
|
||||||
"tslint": "^6.1.2",
|
|
||||||
"tslint-config-prettier": "^1.18.0"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@gitzone/tsrun": "^1.2.12",
|
"@api.global/typedserver": "^3.0.51",
|
||||||
"@pushrocks/early": "^3.0.3",
|
"@git.zone/tsbundle": "^2.1.0",
|
||||||
"@pushrocks/lik": "^4.0.13",
|
"@git.zone/tsrun": "^1.3.3",
|
||||||
"@pushrocks/smartchok": "^1.0.23",
|
"@push.rocks/early": "^4.0.4",
|
||||||
"@pushrocks/smartcli": "^3.0.12",
|
"@push.rocks/lik": "^6.1.0",
|
||||||
"@pushrocks/smartdelay": "^2.0.9",
|
"@push.rocks/smartchok": "^1.0.34",
|
||||||
"@pushrocks/smartlog": "^2.0.35",
|
"@push.rocks/smartcli": "^4.0.11",
|
||||||
"@pushrocks/smartlog-destination-local": "^8.0.8",
|
"@push.rocks/smartdelay": "^3.0.5",
|
||||||
"@pushrocks/smartserve": "^1.1.41",
|
"@push.rocks/smartfile": "^11.0.21",
|
||||||
"@pushrocks/smartshell": "^2.0.26",
|
"@push.rocks/smartlog": "^3.0.7",
|
||||||
"@pushrocks/taskbuffer": "^2.1.1",
|
"@push.rocks/smartlog-destination-local": "^9.0.2",
|
||||||
"@types/parcel-bundler": "^1.12.1",
|
"@push.rocks/smartshell": "^3.0.6",
|
||||||
"parcel-bundler": "^1.12.4"
|
"@push.rocks/taskbuffer": "^3.1.7"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"ts/**/*",
|
"ts/**/*",
|
||||||
@@ -48,5 +47,8 @@
|
|||||||
"cli.js",
|
"cli.js",
|
||||||
"npmextra.json",
|
"npmextra.json",
|
||||||
"readme.md"
|
"readme.md"
|
||||||
|
],
|
||||||
|
"browserslist": [
|
||||||
|
"last 1 chrome versions"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
9561
pnpm-lock.yaml
generated
Normal file
9561
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
0
readme.hints.md
Normal file
0
readme.hints.md
Normal file
12
readme.md
12
readme.md
@@ -1,8 +1,8 @@
|
|||||||
# @gitzone/tswatch
|
# @git.zone/tswatch
|
||||||
watch typescript projects during development
|
watch typescript projects during development
|
||||||
|
|
||||||
## Availabililty and Links
|
## Availabililty and Links
|
||||||
* [npmjs.org (npm package)](https://www.npmjs.com/package/@gitzone/tswatch)
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@git.zone/tswatch)
|
||||||
* [gitlab.com (source)](https://gitlab.com/gitzone/tswatch)
|
* [gitlab.com (source)](https://gitlab.com/gitzone/tswatch)
|
||||||
* [github.com (source mirror)](https://github.com/gitzone/tswatch)
|
* [github.com (source mirror)](https://github.com/gitzone/tswatch)
|
||||||
* [docs (typedoc)](https://gitzone.gitlab.io/tswatch/)
|
* [docs (typedoc)](https://gitzone.gitlab.io/tswatch/)
|
||||||
@@ -13,14 +13,14 @@ Status Category | Status Badge
|
|||||||
-- | --
|
-- | --
|
||||||
GitLab Pipelines | [](https://lossless.cloud)
|
GitLab Pipelines | [](https://lossless.cloud)
|
||||||
GitLab Pipline Test Coverage | [](https://lossless.cloud)
|
GitLab Pipline Test Coverage | [](https://lossless.cloud)
|
||||||
npm | [](https://lossless.cloud)
|
npm | [](https://lossless.cloud)
|
||||||
Snyk | [](https://lossless.cloud)
|
Snyk | [](https://lossless.cloud)
|
||||||
TypeScript Support | [](https://lossless.cloud)
|
TypeScript Support | [](https://lossless.cloud)
|
||||||
node Support | [](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
node Support | [](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
Code Style | [](https://lossless.cloud)
|
Code Style | [](https://lossless.cloud)
|
||||||
PackagePhobia (total standalone install weight) | [](https://lossless.cloud)
|
PackagePhobia (total standalone install weight) | [](https://lossless.cloud)
|
||||||
PackagePhobia (package size on registry) | [](https://lossless.cloud)
|
PackagePhobia (package size on registry) | [](https://lossless.cloud)
|
||||||
BundlePhobia (total size when bundled) | [](https://lossless.cloud)
|
BundlePhobia (total size when bundled) | [](https://lossless.cloud)
|
||||||
Platform support | [](https://lossless.cloud) [](https://lossless.cloud)
|
Platform support | [](https://lossless.cloud) [](https://lossless.cloud)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
// tslint:disable-next-line: no-implicit-dependencies
|
// tslint:disable-next-line: no-implicit-dependencies
|
||||||
import { expect, tap } from '@pushrocks/tapbundle';
|
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
|
||||||
import * as tswatch from '../ts/index';
|
import * as tswatch from '../ts/index.js';
|
||||||
|
|
||||||
let testTsWatchInstance: tswatch.TsWatch;
|
let testTsWatchInstance: tswatch.TsWatch;
|
||||||
|
|
||||||
|
8
ts/00_commitinfo_data.ts
Normal file
8
ts/00_commitinfo_data.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* autocreated commitinfo by @push.rocks/commitinfo
|
||||||
|
*/
|
||||||
|
export const commitinfo = {
|
||||||
|
name: '@git.zone/tswatch',
|
||||||
|
version: '2.0.29',
|
||||||
|
description: 'watch typescript projects during development'
|
||||||
|
}
|
@@ -1,5 +1,5 @@
|
|||||||
import * as early from '@pushrocks/early';
|
import * as early from '@push.rocks/early';
|
||||||
early.start('tswatch');
|
early.start('tswatch');
|
||||||
export * from './tswatch.classes.tswatch';
|
export * from './tswatch.classes.tswatch.js';
|
||||||
export * from './tswatch.cli';
|
export * from './tswatch.cli.js';
|
||||||
early.stop();
|
early.stop();
|
||||||
|
@@ -1 +1 @@
|
|||||||
export * from './interfaces.watchmodes';
|
export * from './interfaces.watchmodes.js';
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
export type TWatchModes =
|
export type TWatchModes =
|
||||||
| 'test'
|
| 'test'
|
||||||
| 'gitzone_npm'
|
| 'node'
|
||||||
| 'gitzone_service'
|
| 'service'
|
||||||
| 'gitzone_element'
|
| 'element'
|
||||||
| 'gitzone_website'
|
| 'website'
|
||||||
| 'echoSomething';
|
| 'echo';
|
||||||
|
@@ -1,45 +0,0 @@
|
|||||||
import * as plugins from './tswatch.plugins';
|
|
||||||
import * as paths from './tswatch.paths';
|
|
||||||
|
|
||||||
export class Parcel {
|
|
||||||
private defaultOptions: plugins.parcel.ParcelOptions = {
|
|
||||||
outDir: plugins.path.join(process.cwd(), './dist_watch'), // The out directory to put the build files in, defaults to dist
|
|
||||||
outFile: 'index.html', // The name of the outputFile
|
|
||||||
publicUrl: '/', // The url to serve on, defaults to '/'
|
|
||||||
watch: true, // Whether to watch the files and rebuild them on change, defaults to process.env.NODE_ENV !== 'production'
|
|
||||||
cache: true, // Enabled or disables caching, defaults to true
|
|
||||||
cacheDir: '.nogit/.parcelcache', // The directory cache gets put in, defaults to .cache
|
|
||||||
contentHash: false, // Disable content hash from being included on the filename
|
|
||||||
global: 'moduleName', // Expose modules as UMD under this name, disabled by default
|
|
||||||
minify: false, // Minify files, enabled if process.env.NODE_ENV === 'production'
|
|
||||||
scopeHoist: false, // Turn on experimental scope hoisting/tree shaking flag, for smaller production bundles
|
|
||||||
target: 'browser', // Browser/node/electron, defaults to browser
|
|
||||||
bundleNodeModules: true, // By default, package.json dependencies are not included when using 'node' or 'electron' with 'target' option above. Set to true to adds them to the bundle, false by default
|
|
||||||
https: null,
|
|
||||||
logLevel: 3, // 5 = save everything to a file, 4 = like 3, but with timestamps and additionally log http requests to dev server, 3 = log info, warnings & errors, 2 = log warnings & errors, 1 = log errors, 0 = log nothing
|
|
||||||
hmr: true, // Enable or disable HMR while watching
|
|
||||||
hmrPort: 3003, // The port the HMR socket runs on, defaults to a random free port (0 in node.js resolves to a random free port)
|
|
||||||
sourceMaps: true, // Enable or disable sourcemaps, defaults to enabled (minified builds currently always create sourcemaps)
|
|
||||||
hmrHostname: '', // A hostname for hot module reload, default to ''
|
|
||||||
detailedReport: false, // Prints a detailed report of the bundles, assets, filesizes and times, defaults to false, reports are only printed if watch is disabled
|
|
||||||
};
|
|
||||||
public options: plugins.parcel.ParcelOptions;
|
|
||||||
public entryFiles: string | string[] = plugins.path.join(paths.cwd, './html/index.html');
|
|
||||||
|
|
||||||
public async start() {
|
|
||||||
const bundler = new plugins.parcel(this.entryFiles, this.options);
|
|
||||||
|
|
||||||
// Run the bundler, this returns the main bundle
|
|
||||||
// Use the events if you're using watch mode as this promise will only trigger once and not for every rebuild
|
|
||||||
const bundle = await bundler.serve(3002);
|
|
||||||
}
|
|
||||||
|
|
||||||
constructor(fromArg: string | string[], outputDirArg: string, outputFileArg: string) {
|
|
||||||
this.entryFiles = fromArg;
|
|
||||||
this.options = {
|
|
||||||
...this.defaultOptions,
|
|
||||||
outDir: outputDirArg,
|
|
||||||
outFile: outputFileArg,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,14 +1,14 @@
|
|||||||
import * as plugins from './tswatch.plugins';
|
import * as plugins from './tswatch.plugins.js';
|
||||||
import * as paths from './tswatch.paths';
|
import * as paths from './tswatch.paths.js';
|
||||||
import * as interfaces from './interfaces';
|
import * as interfaces from './interfaces/index.js';
|
||||||
|
|
||||||
import { Watcher } from './tswatch.classes.watcher';
|
import { Watcher } from './tswatch.classes.watcher.js';
|
||||||
import { Parcel } from './tswatch.classes.parcel';
|
import { logger } from './tswatch.logging.js';
|
||||||
|
|
||||||
export class TsWatch {
|
export class TsWatch {
|
||||||
public watchmode: interfaces.TWatchModes;
|
public watchmode: interfaces.TWatchModes;
|
||||||
public watcherMap = new plugins.lik.ObjectMap<Watcher>();
|
public watcherMap = new plugins.lik.ObjectMap<Watcher>();
|
||||||
public smartserve: plugins.smartserve.SmartServe;
|
public typedserver: plugins.typedserver.TypedServer;
|
||||||
|
|
||||||
constructor(watchmodeArg: interfaces.TWatchModes) {
|
constructor(watchmodeArg: interfaces.TWatchModes) {
|
||||||
this.watchmode = watchmodeArg;
|
this.watchmode = watchmodeArg;
|
||||||
@@ -18,8 +18,13 @@ export class TsWatch {
|
|||||||
* starts the TsWatch instance
|
* starts the TsWatch instance
|
||||||
*/
|
*/
|
||||||
public async start() {
|
public async start() {
|
||||||
|
const tsbundle = new plugins.tsbundle.TsBundle();
|
||||||
|
const htmlHandler = new plugins.tsbundle.HtmlHandler();
|
||||||
switch (this.watchmode) {
|
switch (this.watchmode) {
|
||||||
case 'test':
|
case 'test':
|
||||||
|
/**
|
||||||
|
* this strategy runs test whenever there is a change in the ts directory
|
||||||
|
*/
|
||||||
this.watcherMap.add(
|
this.watcherMap.add(
|
||||||
new Watcher({
|
new Watcher({
|
||||||
filePathToWatch: paths.cwd,
|
filePathToWatch: paths.cwd,
|
||||||
@@ -28,7 +33,7 @@ export class TsWatch {
|
|||||||
})
|
})
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
case 'gitzone_npm':
|
case 'node':
|
||||||
this.watcherMap.add(
|
this.watcherMap.add(
|
||||||
new Watcher({
|
new Watcher({
|
||||||
filePathToWatch: paths.cwd,
|
filePathToWatch: paths.cwd,
|
||||||
@@ -37,36 +42,128 @@ export class TsWatch {
|
|||||||
})
|
})
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
case 'gitzone_element':
|
case 'element':
|
||||||
|
(async () => {
|
||||||
|
/**
|
||||||
|
* this strategy runs a standard server and bundles the ts files to a dist_watch directory
|
||||||
|
*/
|
||||||
// lets create a standard server
|
// lets create a standard server
|
||||||
console.log(
|
console.log(
|
||||||
'bundling TypeScript files to "dist_watch" Note: This is for development only!'
|
'bundling TypeScript files to "dist_watch" Note: This is for development only!'
|
||||||
);
|
);
|
||||||
const parcel = new Parcel(
|
this.typedserver = new plugins.typedserver.TypedServer({
|
||||||
plugins.path.join(process.cwd(), './html/index.html'),
|
cors: true,
|
||||||
plugins.path.join(process.cwd(), './dist_watch'),
|
injectReload: true,
|
||||||
'index.html'
|
serveDir: plugins.path.join(paths.cwd, './dist_watch/'),
|
||||||
);
|
port: 3002,
|
||||||
await parcel.start();
|
enableCompression: true,
|
||||||
break;
|
preferredCompressionMethod: 'gzip',
|
||||||
case 'gitzone_website':
|
});
|
||||||
|
|
||||||
|
const bundleAndReloadElement = async () => {
|
||||||
|
await tsbundle.build(paths.cwd, './html/index.ts', './dist_watch/bundle.js', {
|
||||||
|
bundler: 'esbuild',
|
||||||
|
});
|
||||||
|
await this.typedserver.reload();
|
||||||
|
};
|
||||||
this.watcherMap.add(
|
this.watcherMap.add(
|
||||||
new Watcher({
|
new Watcher({
|
||||||
filePathToWatch: plugins.path.join(paths.cwd, './ts/'),
|
filePathToWatch: plugins.path.join(paths.cwd, './ts_web/'),
|
||||||
commandToExecute: 'npm run startTs',
|
functionToCall: async () => {
|
||||||
|
await bundleAndReloadElement();
|
||||||
|
},
|
||||||
timeout: null,
|
timeout: null,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
// client directory
|
// lets get the other ts folders
|
||||||
const parcelWebsite = new Parcel(
|
let tsfolders = await plugins.smartfile.fs.listFolders(paths.cwd);
|
||||||
plugins.path.join(process.cwd(), './ts_web/index.ts'),
|
tsfolders = tsfolders.filter(
|
||||||
plugins.path.join(process.cwd(), './dist_serve'),
|
(itemArg) => itemArg.startsWith('ts') && itemArg !== 'ts_web'
|
||||||
'bundle.js'
|
|
||||||
);
|
);
|
||||||
await parcelWebsite.start();
|
const smartshellInstance = new plugins.smartshell.Smartshell({
|
||||||
|
executor: 'bash',
|
||||||
|
});
|
||||||
|
for (const tsfolder of tsfolders) {
|
||||||
|
logger.log('info', `creating watcher for folder ${tsfolder}`);
|
||||||
|
this.watcherMap.add(
|
||||||
|
new Watcher({
|
||||||
|
filePathToWatch: plugins.path.join(paths.cwd, `./${tsfolder}/`),
|
||||||
|
functionToCall: async () => {
|
||||||
|
logger.log('info', `building ${tsfolder}`);
|
||||||
|
await smartshellInstance.exec(`(cd ${paths.cwd} && npm run build)`);
|
||||||
|
await this.typedserver.reload();
|
||||||
|
},
|
||||||
|
timeout: null,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.watcherMap.add(
|
||||||
|
new Watcher({
|
||||||
|
filePathToWatch: plugins.path.join(paths.cwd, './html/'),
|
||||||
|
functionToCall: async () => {
|
||||||
|
await htmlHandler.processHtml({
|
||||||
|
from: plugins.path.join(paths.cwd, './html/index.html'),
|
||||||
|
to: plugins.path.join(paths.cwd, './dist_watch/index.html'),
|
||||||
|
minify: false,
|
||||||
|
});
|
||||||
|
await bundleAndReloadElement();
|
||||||
|
},
|
||||||
|
timeout: null,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
})();
|
||||||
break;
|
break;
|
||||||
case 'gitzone_service':
|
case 'website':
|
||||||
|
(async () => {
|
||||||
|
const bundleAndReloadWebsite = async () => {
|
||||||
|
await tsbundle.build(paths.cwd, './ts_web/index.ts', './dist_serve/bundle.js', {
|
||||||
|
bundler: 'esbuild',
|
||||||
|
});
|
||||||
|
};
|
||||||
|
let tsfolders = await plugins.smartfile.fs.listFolders(paths.cwd);
|
||||||
|
tsfolders = tsfolders.filter(
|
||||||
|
(itemArg) => itemArg.startsWith('ts') && itemArg !== 'ts_web'
|
||||||
|
);
|
||||||
|
const smartshellInstance = new plugins.smartshell.Smartshell({
|
||||||
|
executor: 'bash',
|
||||||
|
});
|
||||||
|
for (const tsfolder of tsfolders) {
|
||||||
|
this.watcherMap.add(
|
||||||
|
new Watcher({
|
||||||
|
filePathToWatch: plugins.path.join(paths.cwd, `./${tsfolder}/`),
|
||||||
|
commandToExecute: `npm run startTs`,
|
||||||
|
timeout: null,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
this.watcherMap.add(
|
||||||
|
new Watcher({
|
||||||
|
filePathToWatch: plugins.path.join(paths.cwd, './ts_web/'),
|
||||||
|
functionToCall: async () => {
|
||||||
|
await bundleAndReloadWebsite();
|
||||||
|
},
|
||||||
|
timeout: null,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
this.watcherMap.add(
|
||||||
|
new Watcher({
|
||||||
|
filePathToWatch: plugins.path.join(paths.cwd, './html/'),
|
||||||
|
functionToCall: async () => {
|
||||||
|
await htmlHandler.processHtml({
|
||||||
|
from: plugins.path.join(paths.cwd, './html/index.html'),
|
||||||
|
to: plugins.path.join(paths.cwd, './dist_serve/index.html'),
|
||||||
|
minify: false,
|
||||||
|
});
|
||||||
|
await bundleAndReloadWebsite();
|
||||||
|
},
|
||||||
|
timeout: null,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
})();
|
||||||
|
break;
|
||||||
|
case 'service':
|
||||||
this.watcherMap.add(
|
this.watcherMap.add(
|
||||||
new Watcher({
|
new Watcher({
|
||||||
filePathToWatch: plugins.path.join(paths.cwd, './ts/'),
|
filePathToWatch: plugins.path.join(paths.cwd, './ts/'),
|
||||||
@@ -75,7 +172,7 @@ export class TsWatch {
|
|||||||
})
|
})
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
case 'echoSomething':
|
case 'echo':
|
||||||
const tsWatchInstanceEchoSomething = new Watcher({
|
const tsWatchInstanceEchoSomething = new Watcher({
|
||||||
filePathToWatch: plugins.path.join(paths.cwd, './ts'),
|
filePathToWatch: plugins.path.join(paths.cwd, './ts'),
|
||||||
commandToExecute: 'npm -v',
|
commandToExecute: 'npm -v',
|
||||||
@@ -89,8 +186,8 @@ export class TsWatch {
|
|||||||
this.watcherMap.forEach(async (watcher) => {
|
this.watcherMap.forEach(async (watcher) => {
|
||||||
await watcher.start();
|
await watcher.start();
|
||||||
});
|
});
|
||||||
if (this.smartserve) {
|
if (this.typedserver) {
|
||||||
await this.smartserve.start();
|
await this.typedserver.start();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -98,8 +195,8 @@ export class TsWatch {
|
|||||||
* stops the execution of any active Watchers
|
* stops the execution of any active Watchers
|
||||||
*/
|
*/
|
||||||
public async stop() {
|
public async stop() {
|
||||||
if (this.smartserve) {
|
if (this.typedserver) {
|
||||||
await this.smartserve.stop();
|
await this.typedserver.stop();
|
||||||
}
|
}
|
||||||
this.watcherMap.forEach(async (watcher) => {
|
this.watcherMap.forEach(async (watcher) => {
|
||||||
await watcher.stop();
|
await watcher.stop();
|
||||||
|
@@ -1,11 +1,10 @@
|
|||||||
import * as plugins from './tswatch.plugins';
|
import * as plugins from './tswatch.plugins.js';
|
||||||
import { logger } from './tswatch.logging';
|
import { logger } from './tswatch.logging.js';
|
||||||
|
|
||||||
export type TCommandFunction = () => Promise<void>;
|
|
||||||
|
|
||||||
export interface IWatcherConstructorOptions {
|
export interface IWatcherConstructorOptions {
|
||||||
filePathToWatch: string;
|
filePathToWatch: string;
|
||||||
commandToExecute: string | TCommandFunction;
|
commandToExecute?: string;
|
||||||
|
functionToCall?: () => Promise<any>;
|
||||||
timeout?: number;
|
timeout?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -21,7 +20,7 @@ export class Watcher {
|
|||||||
});
|
});
|
||||||
|
|
||||||
private currentExecution: plugins.smartshell.IExecResultStreaming;
|
private currentExecution: plugins.smartshell.IExecResultStreaming;
|
||||||
private smartchokWatcher = new plugins.smartchok.Smartchok([], {});
|
private smartchokWatcher = new plugins.smartchok.Smartchok([]);
|
||||||
private options: IWatcherConstructorOptions;
|
private options: IWatcherConstructorOptions;
|
||||||
|
|
||||||
constructor(optionsArg: IWatcherConstructorOptions) {
|
constructor(optionsArg: IWatcherConstructorOptions) {
|
||||||
@@ -47,7 +46,7 @@ export class Watcher {
|
|||||||
* updates the current execution
|
* updates the current execution
|
||||||
*/
|
*/
|
||||||
private async updateCurrentExecution() {
|
private async updateCurrentExecution() {
|
||||||
if (typeof this.options.commandToExecute === 'string') {
|
if (this.options.commandToExecute) {
|
||||||
if (this.currentExecution) {
|
if (this.currentExecution) {
|
||||||
logger.log('ok', `reexecuting ${this.options.commandToExecute}`);
|
logger.log('ok', `reexecuting ${this.options.commandToExecute}`);
|
||||||
this.currentExecution.kill();
|
this.currentExecution.kill();
|
||||||
@@ -58,7 +57,12 @@ export class Watcher {
|
|||||||
this.options.commandToExecute
|
this.options.commandToExecute
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
console.log('cannot run execution task');
|
console.log('no executionCommand set');
|
||||||
|
}
|
||||||
|
if (this.options.functionToCall) {
|
||||||
|
this.options.functionToCall();
|
||||||
|
} else {
|
||||||
|
console.log('no functionToCall set.')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -66,21 +70,16 @@ export class Watcher {
|
|||||||
* this method sets up a clean exit strategy
|
* this method sets up a clean exit strategy
|
||||||
*/
|
*/
|
||||||
private async setupCleanup() {
|
private async setupCleanup() {
|
||||||
const cleanup = () => {
|
|
||||||
if (this.currentExecution) {
|
|
||||||
process.kill(-this.currentExecution.childProcess.pid);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
process.on('exit', () => {
|
process.on('exit', () => {
|
||||||
console.log('');
|
console.log('');
|
||||||
console.log('now exiting!');
|
console.log('now exiting!');
|
||||||
cleanup();
|
this.stop();
|
||||||
process.exit(0);
|
process.exit(0);
|
||||||
});
|
});
|
||||||
process.on('SIGINT', () => {
|
process.on('SIGINT', () => {
|
||||||
console.log('');
|
console.log('');
|
||||||
console.log('ok! got SIGINT We are exiting! Just cleaning up to exit neatly :)');
|
console.log('ok! got SIGINT We are exiting! Just cleaning up to exit neatly :)');
|
||||||
cleanup();
|
this.stop();
|
||||||
process.exit(0);
|
process.exit(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -88,7 +87,7 @@ export class Watcher {
|
|||||||
if (this.options.timeout) {
|
if (this.options.timeout) {
|
||||||
plugins.smartdelay.delayFor(this.options.timeout).then(() => {
|
plugins.smartdelay.delayFor(this.options.timeout).then(() => {
|
||||||
console.log(`timed out afer ${this.options.timeout} milliseconds! exiting!`);
|
console.log(`timed out afer ${this.options.timeout} milliseconds! exiting!`);
|
||||||
cleanup();
|
this.stop();
|
||||||
process.exit(0);
|
process.exit(0);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -100,7 +99,7 @@ export class Watcher {
|
|||||||
public async stop() {
|
public async stop() {
|
||||||
await this.smartchokWatcher.stop();
|
await this.smartchokWatcher.stop();
|
||||||
if (this.currentExecution && !this.currentExecution.childProcess.killed) {
|
if (this.currentExecution && !this.currentExecution.childProcess.killed) {
|
||||||
process.kill(-this.currentExecution.childProcess.pid);
|
this.currentExecution.kill();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,28 +1,31 @@
|
|||||||
import * as plugins from './tswatch.plugins';
|
import * as plugins from './tswatch.plugins.js';
|
||||||
import * as paths from './tswatch.paths';
|
import * as paths from './tswatch.paths.js';
|
||||||
import { logger } from './tswatch.logging';
|
import { logger } from './tswatch.logging.js';
|
||||||
|
|
||||||
import { TsWatch } from './tswatch.classes.tswatch';
|
import { TsWatch } from './tswatch.classes.tswatch.js';
|
||||||
|
|
||||||
const tswatchCli = new plugins.smartcli.Smartcli();
|
const tswatchCli = new plugins.smartcli.Smartcli();
|
||||||
|
|
||||||
// standard behaviour will assume gitzone setup
|
// standard behaviour will assume gitzone setup
|
||||||
|
tswatchCli.standardCommand().subscribe((argvArg => {
|
||||||
|
tswatchCli.triggerCommand('npm', {});
|
||||||
|
}))
|
||||||
|
|
||||||
tswatchCli.addCommand('element').subscribe(async (argvArg) => {
|
tswatchCli.addCommand('element').subscribe(async (argvArg) => {
|
||||||
logger.log('info', `running watch task for a gitzone element project`);
|
logger.log('info', `running watch task for a gitzone element project`);
|
||||||
const tsWatch = new TsWatch('gitzone_element');
|
const tsWatch = new TsWatch('element');
|
||||||
await tsWatch.start();
|
await tsWatch.start();
|
||||||
});
|
});
|
||||||
|
|
||||||
tswatchCli.addCommand('npm').subscribe(async (argvArg) => {
|
tswatchCli.addCommand('npm').subscribe(async (argvArg) => {
|
||||||
logger.log('info', `running watch task for a gitzone element project`);
|
logger.log('info', `running watch task for a gitzone element project`);
|
||||||
const tsWatch = new TsWatch('gitzone_npm');
|
const tsWatch = new TsWatch('node');
|
||||||
await tsWatch.start();
|
await tsWatch.start();
|
||||||
});
|
});
|
||||||
|
|
||||||
tswatchCli.addCommand('service').subscribe(async (argvArg) => {
|
tswatchCli.addCommand('service').subscribe(async (argvArg) => {
|
||||||
logger.log('info', `running test task`);
|
logger.log('info', `running test task`);
|
||||||
const tsWatch = new TsWatch('gitzone_service');
|
const tsWatch = new TsWatch('service');
|
||||||
await tsWatch.start();
|
await tsWatch.start();
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -34,7 +37,7 @@ tswatchCli.addCommand('test').subscribe(async (argvArg) => {
|
|||||||
|
|
||||||
tswatchCli.addCommand('website').subscribe(async (argvArg) => {
|
tswatchCli.addCommand('website').subscribe(async (argvArg) => {
|
||||||
logger.log('info', `running watch task for a gitzone website project`);
|
logger.log('info', `running watch task for a gitzone website project`);
|
||||||
const tsWatch = new TsWatch('gitzone_website');
|
const tsWatch = new TsWatch('website');
|
||||||
await tsWatch.start();
|
await tsWatch.start();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
import * as plugins from './tswatch.plugins';
|
import * as plugins from './tswatch.plugins.js';
|
||||||
|
|
||||||
export const logger = new plugins.smartlog.Smartlog({
|
export const logger = new plugins.smartlog.Smartlog({
|
||||||
logContext: {
|
logContext: {
|
||||||
|
@@ -1,3 +1,3 @@
|
|||||||
import * as plugins from './tswatch.plugins';
|
import * as plugins from './tswatch.plugins.js';
|
||||||
|
|
||||||
export const cwd = process.cwd();
|
export const cwd = process.cwd();
|
||||||
|
@@ -1,30 +1,39 @@
|
|||||||
|
// node native scope
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
export { path };
|
export { path };
|
||||||
|
|
||||||
|
// @gitzone scope
|
||||||
|
import * as tsbundle from '@git.zone/tsbundle';
|
||||||
|
export {
|
||||||
|
tsbundle
|
||||||
|
}
|
||||||
|
|
||||||
|
// @apiglobal scope
|
||||||
|
import * as typedserver from '@api.global/typedserver';
|
||||||
|
|
||||||
|
export {
|
||||||
|
typedserver,
|
||||||
|
}
|
||||||
|
|
||||||
// @pushrocks scope
|
// @pushrocks scope
|
||||||
import * as lik from '@pushrocks/lik';
|
import * as lik from '@push.rocks/lik';
|
||||||
import * as smartchok from '@pushrocks/smartchok';
|
import * as smartchok from '@push.rocks/smartchok';
|
||||||
import * as smartcli from '@pushrocks/smartcli';
|
import * as smartcli from '@push.rocks/smartcli';
|
||||||
import * as smartdelay from '@pushrocks/smartdelay';
|
import * as smartdelay from '@push.rocks/smartdelay';
|
||||||
import * as smartlog from '@pushrocks/smartlog';
|
import * as smartfile from '@push.rocks/smartfile';
|
||||||
import * as smartlogDestinationLocal from '@pushrocks/smartlog-destination-local';
|
import * as smartlog from '@push.rocks/smartlog';
|
||||||
import * as smartserve from '@pushrocks/smartserve';
|
import * as smartlogDestinationLocal from '@push.rocks/smartlog-destination-local';
|
||||||
import * as smartshell from '@pushrocks/smartshell';
|
import * as smartshell from '@push.rocks/smartshell';
|
||||||
import * as taskbuffer from '@pushrocks/taskbuffer';
|
import * as taskbuffer from '@push.rocks/taskbuffer';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
lik,
|
lik,
|
||||||
smartchok,
|
smartchok,
|
||||||
smartcli,
|
smartcli,
|
||||||
smartdelay,
|
smartdelay,
|
||||||
|
smartfile,
|
||||||
smartlog,
|
smartlog,
|
||||||
smartlogDestinationLocal,
|
smartlogDestinationLocal,
|
||||||
smartserve,
|
|
||||||
smartshell,
|
smartshell,
|
||||||
taskbuffer,
|
taskbuffer,
|
||||||
};
|
};
|
||||||
|
|
||||||
// third party scope
|
|
||||||
import parcel from 'parcel-bundler';
|
|
||||||
|
|
||||||
export { parcel };
|
|
||||||
|
14
tsconfig.json
Normal file
14
tsconfig.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"experimentalDecorators": true,
|
||||||
|
"useDefineForClassFields": false,
|
||||||
|
"target": "ES2022",
|
||||||
|
"module": "NodeNext",
|
||||||
|
"moduleResolution": "NodeNext",
|
||||||
|
"esModuleInterop": true,
|
||||||
|
"verbatimModuleSyntax": true
|
||||||
|
},
|
||||||
|
"exclude": [
|
||||||
|
"dist_*/**/*.d.ts"
|
||||||
|
]
|
||||||
|
}
|
17
tslint.json
17
tslint.json
@@ -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"
|
|
||||||
}
|
|
Reference in New Issue
Block a user