f40ef6b7c0
Align Cloudly with the current typedserver, smartconfig, smartstate, and Docker tooling releases so builds and Docker output stay compatible with the upgraded stack.
14 lines
340 B
TypeScript
14 lines
340 B
TypeScript
import * as plugins from './plugins.js';
|
|
import * as paths from './paths.js';
|
|
import { Cloudly } from './index.js';
|
|
|
|
export class CloudlyInfo {
|
|
public cloudlyRef: Cloudly;
|
|
|
|
constructor(cloudlyRefArg: Cloudly) {
|
|
this.cloudlyRef = cloudlyRefArg;
|
|
}
|
|
|
|
public projectInfo = plugins.projectinfo.ProjectInfo.create(paths.packageDir);
|
|
}
|