Skip to content

Commit 047214b

Browse files
committed
feat(storm-stack): Major updates to project structure
1 parent c0a0dbf commit 047214b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+2962
-867
lines changed

.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"prettier.bracketSameLine": true,
5151
"prettier.configPath": "./node_modules/@storm-software/prettier/config.json",
5252
"prettier.ignorePath": "./node_modules/@storm-software/prettier/.prettierignore",
53-
"prettier.enableDebugLogs": true,
53+
"prettier.enableDebugLogs": false,
5454
"prettier.enable": true,
5555
"markdownlint.config": {
5656
"extends": "./node_modules/@storm-software/markdownlint/config/config.json"

eslint.config.mjs

+1-4
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,5 @@ import { getStormConfig } from "@storm-software/eslint";
2020
Error.stackTraceLimit = Number.POSITIVE_INFINITY;
2121

2222
export default getStormConfig({
23-
repositoryName: "storm-stack",
24-
nx: {
25-
depsCheck: false
26-
}
23+
repositoryName: "storm-stack"
2724
});

examples/cloudflare-worker/docs/dotenv.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Environment variables configuration
44

55
Below is a list of environment variables used by the
6-
[@storm-stack/examples-cloudflare-app](https://www.npmjs.com/package/@storm-stack/examples-cloudflare-app)
6+
[@storm-stack/examples-cloudflare-worker](https://www.npmjs.com/package/@storm-stack/examples-cloudflare-worker)
77
package. These values can be updated in the `.env` file in the root of the
88
project.
99

examples/cloudflare-worker/package.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@
1111
"private": true,
1212
"devDependencies": {
1313
"@storm-stack/nx": "workspace:*",
14-
"@storm-stack/plugin-cloudflare-worker": "workspace:*",
14+
"@storm-stack/plugin-cloudflare": "workspace:*",
1515
"storm-stack": "workspace:*"
16-
},
17-
"storm": {
18-
"name": "examples-cloudflare-worker"
1916
}
2017
}

examples/cloudflare-worker/project.json

+16-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,26 @@
44
"projectType": "application",
55
"sourceRoot": "examples/cloudflare-worker/src",
66
"targets": {
7+
"prepare": {
8+
"executor": "@storm-stack/nx:prepare",
9+
"outputs": ["{options.outputPath}"],
10+
"options": {
11+
"entry": "{sourceRoot}/index.ts#handler",
12+
"outputPath": "dist/examples/cloudflare-worker",
13+
"plugins": ["@storm-stack/plugin-cloudflare"],
14+
"skipCache": true,
15+
"skipInstalls": true,
16+
"mode": "development"
17+
}
18+
},
719
"build": {
8-
"executor": "@storm-stack/nx:cloudflare-worker-build",
20+
"executor": "@storm-stack/nx:build",
921
"outputs": ["{options.outputPath}"],
22+
"dependsOn": ["prepare"],
1023
"options": {
24+
"entry": "{sourceRoot}/index.ts#handler",
1125
"outputPath": "dist/examples/cloudflare-worker",
26+
"plugins": ["@storm-stack/plugin-cloudflare"],
1227
"skipCache": true,
1328
"skipInstalls": true,
1429
"mode": "development"

examples/cloudflare-worker/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import type { ExamplePayload } from "./types";
1919

20-
export function handler(event: StormEvent<"Request", ExamplePayload>) {
20+
export function handler(event: StormRequest<ExamplePayload>) {
2121
const payload = event.data;
2222

2323
return payload.address.city;
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
name = 'examples-cloudflare-worker'
3+
compatibility_date = '2025-03-13'
4+
main = '/.storm/entry-oqFxRJ2G.ts'
5+
account_id = 'undefined'
6+
compatibility_flags = ['nodejs_als']

examples/node-app/package.json

-3
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,5 @@
1616
"@storm-stack/nx": "workspace:*",
1717
"@storm-stack/plugin-node": "workspace:*",
1818
"storm-stack": "workspace:*"
19-
},
20-
"storm": {
21-
"name": "examples-node-app"
2219
}
2320
}

examples/node-app/project.json

+15-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,26 @@
44
"projectType": "application",
55
"sourceRoot": "examples/node-app/src",
66
"targets": {
7+
"prepare": {
8+
"executor": "@storm-stack/nx:prepare",
9+
"outputs": ["{options.outputPath}"],
10+
"options": {
11+
"entry": "{sourceRoot}/index.ts#getCity",
12+
"outputPath": "dist/examples/node-app",
13+
"plugins": ["@storm-stack/plugin-node"],
14+
"skipCache": true,
15+
"skipInstalls": true,
16+
"mode": "development"
17+
}
18+
},
719
"build": {
8-
"executor": "@storm-stack/nx:node-build",
20+
"executor": "@storm-stack/nx:build",
921
"outputs": ["{options.outputPath}"],
22+
"dependsOn": ["prepare"],
1023
"options": {
1124
"entry": "{sourceRoot}/index.ts#getCity",
1225
"outputPath": "dist/examples/node-app",
26+
"plugins": ["@storm-stack/plugin-node"],
1327
"skipCache": true,
1428
"skipInstalls": true,
1529
"mode": "development"

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,15 @@
7272
"@nx/workspace": "catalog:",
7373
"@storm-software/config": "catalog:",
7474
"@storm-software/cspell": "catalog:",
75+
"@storm-software/esbuild": "catalog:",
7576
"@storm-software/eslint": "catalog:",
7677
"@storm-software/git-tools": "catalog:",
7778
"@storm-software/linting-tools": "catalog:",
7879
"@storm-software/markdownlint": "catalog:",
7980
"@storm-software/prettier": "catalog:",
8081
"@storm-software/testing-tools": "catalog:",
8182
"@storm-software/tsconfig": "catalog:",
83+
"@storm-software/unbuild": "catalog:",
8284
"@storm-software/untyped": "catalog:",
8385
"@storm-software/workspace-tools": "catalog:",
8486
"@swc-node/register": "catalog:",

packages/eslint-plugin-storm-stack/src/configs/globals.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,8 @@ export const globals = {
2222
StormError: "readonly",
2323
StormRequest: "readonly",
2424
StormResponse: "readonly",
25-
StormJSON: "readonly"
25+
StormEvent: "readonly",
26+
StormJSON: "readonly",
27+
id: "readonly",
28+
getRandom: "readonly"
2629
} as Record<string, ESLintGlobalsPropValue>;

packages/log-console/src/formatter.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,8 @@ const logLevelStyles: Record<LogLevel, string> = {
4242
/**
4343
* The default console formatter.
4444
*
45-
* @param record The log record to format.
46-
* @returns The formatted log record, as an array of arguments for
47-
* {@link console.log}.
45+
* @param record - The log record to format.
46+
* @returns The formatted log record, as an array of arguments for {@link console.log}.
4847
*/
4948
export function defaultConsoleFormatter(record: LogRecord): readonly unknown[] {
5049
let msg = "";

packages/log-console/src/types.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ import type { LogRecord } from "storm-stack/types";
2020
/**
2121
* A console formatter is a function that accepts a log record and returns an array of arguments to pass to {@link console.log}.
2222
*
23-
* @param record The log record to format.
23+
* @param record - The log record to format.
2424
* @returns The formatted log record, as an array of arguments for {@link console.log}.
2525
*/
26-
export type ConsoleFormatter = (record: LogRecord) => readonly unknown[];
26+
export type ConsoleFormatter = (record: LogRecord) => readonly any[];
2727

2828
/**
2929
* Options for the {@link getConsoleSink} function.

packages/log-sentry/README.md packages/log-sentry-node/README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!-- START header -->
22
<!-- END header -->
33

4-
# Storm Stack - Sentry Log Adapters
4+
# Storm Stack - Sentry NodeJs Log Adapter
55

6-
A package containing a Storm Stack log adapter to write log messages to [Sentry](https://sentry.io/).
6+
A package containing a Storm Stack log adapter to write log messages to [Sentry](https://sentry.io/) in NodeJs applications.
77

88
<!-- START doctoc -->
99
<!-- END doctoc -->
@@ -13,14 +13,14 @@ A package containing a Storm Stack log adapter to write log messages to [Sentry]
1313
Using [pnpm](http://pnpm.io):
1414

1515
```bash
16-
pnpm add @storm-stack/log-sentry
16+
pnpm add @storm-stack/log-sentry-node
1717
```
1818

1919
<details>
2020
<summary>Using npm</summary>
2121

2222
```bash
23-
npm install @storm-stack/log-sentry
23+
npm install @storm-stack/log-sentry-node
2424
```
2525

2626
</details>
@@ -29,7 +29,7 @@ npm install @storm-stack/log-sentry
2929
<summary>Using yarn</summary>
3030

3131
```bash
32-
yarn add @storm-stack/log-sentry
32+
yarn add @storm-stack/log-sentry-node
3333
```
3434

3535
</details>
@@ -48,16 +48,16 @@ commands are available to assist in development.
4848

4949
### Building
5050

51-
Run `nx build log-sentry` to build the library.
51+
Run `nx build log-sentry-node` to build the library.
5252

5353
### Running unit tests
5454

55-
Run `nx test log-sentry` to execute the unit tests via
55+
Run `nx test log-sentry-node` to execute the unit tests via
5656
[Jest](https://jestjs.io).
5757

5858
### Linting
5959

60-
Run `nx lint log-sentry` to run [ESLint](https://eslint.org/) on the package.
60+
Run `nx lint log-sentry-node` to run [ESLint](https://eslint.org/) on the package.
6161

6262
<!-- START footer -->
6363
<!-- END footer -->

packages/log-sentry/docs/dotenv.md packages/log-sentry-node/docs/dotenv.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Environment variables configuration
44

55
Below is a list of environment variables used by the
6-
[@storm-stack/log-sentry](https://www.npmjs.com/package/@storm-stack/log-sentry)
6+
[@storm-stack/log-sentry-node](https://www.npmjs.com/package/@storm-stack/log-sentry-node)
77
package. These values can be updated in the `.env` file in the root of the
88
project.
99

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { getJestConfig } from '@storm-software/testing-tools';
2+
3+
export default getJestConfig('packages/log-sentry-node', true, 'log-sentry-node');
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,30 @@
11
{
2-
"name": "@storm-stack/log-sentry",
2+
"name": "@storm-stack/log-sentry-node",
33
"version": "0.0.1",
44
"type": "module",
5-
"description": "A package containing a Storm Stack log adapter to write log messages to Sentry",
5+
"description": "A package containing a Storm Stack log adapter to write log messages to Sentry in a NodeJS application",
66
"repository": {
77
"type": "github",
88
"url": "https://github.com/storm-software/storm-stack.git",
9-
"directory": "packages/log-sentry"
9+
"directory": "packages/log-sentry-node"
1010
},
1111
"private": false,
1212
"dependencies": {
1313
"@sentry/core": "catalog:",
14+
"@sentry/node": "catalog:",
1415
"@stryke/json": "catalog:"
1516
},
1617
"devDependencies": {
17-
"@sentry/types": "catalog:",
1818
"@storm-stack/nx": "workspace:*",
1919
"@types/node": "catalog:",
2020
"storm-stack": "workspace:*"
2121
},
2222
"publishConfig": {
2323
"access": "public"
24+
},
25+
"storm": {
26+
"adapter": "log",
27+
"init": "src/instrument.ts",
28+
"sink": "src/index.ts"
2429
}
2530
}

packages/log-sentry/project.json packages/log-sentry-node/project.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "log-sentry",
2+
"name": "log-sentry-node",
33
"$schema": "../../node_modules/nx/schemas/project-schema.json",
44
"projectType": "library",
5-
"sourceRoot": "packages/log-sentry/src",
5+
"sourceRoot": "packages/log-sentry-node/src",
66
"targets": {
77
"nx-release-publish": {
88
"executor": "@storm-software/workspace-tools:npm-publish"

packages/log-sentry/src/index.ts packages/log-sentry-node/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
------------------------------------------------------------------- */
1717

1818
/**
19-
* The log-sentry library used by Storm Software for building NodeJS applications.
19+
* The log-sentry-node library used by Storm Software for building NodeJS applications.
2020
*
2121
* @remarks
22-
* A package containing a Storm Stack log adapter to write log messages to Sentry
22+
* A package containing a Storm Stack log adapter to write log messages to Sentry in a NodeJS application.
2323
*
2424
* @packageDocumentation
2525
*/

packages/nx/src/executors/node-build/executor.ts packages/log-sentry-node/src/instrument.ts

+11-20
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,14 @@
1515
1616
------------------------------------------------------------------- */
1717

18-
import { withRunExecutor } from "@storm-software/workspace-tools";
19-
import { createBuildExecutor } from "../../base/build-executor";
20-
import type { StormStackNodeBuildExecutorSchema } from "./schema";
21-
22-
export const executorFn = createBuildExecutor(["@storm-stack/plugin-node"]);
23-
24-
export default withRunExecutor<StormStackNodeBuildExecutorSchema>(
25-
"Storm Stack NodeJs build executor",
26-
executorFn,
27-
{
28-
skipReadingConfig: false,
29-
hooks: {
30-
applyDefaultOptions: (options: StormStackNodeBuildExecutorSchema) => {
31-
options.entry ??= "{sourceRoot}/index.ts";
32-
33-
return options;
34-
}
35-
}
36-
}
37-
);
18+
import * as Sentry from "@sentry/node";
19+
20+
Sentry.init({
21+
dsn: $storm.env.SENTRY_DSN,
22+
environment: $storm.env.ENVIRONMENT,
23+
release: $storm.env.RELEASE_ID,
24+
debug: $storm.env.DEBUG,
25+
enabled: true,
26+
attachStacktrace: $storm.env.STACKTRACE,
27+
sendClientReports: true
28+
});

packages/log-sentry/src/sink.ts packages/log-sentry-node/src/sink.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function getParameterizedString(record: LogRecord): ParameterizedString {
4848
/**
4949
* A platform-specific inspect function. In Deno, this is {@link Deno.inspect}, and in Node.js/Bun it is {@link util.inspect}. If neither is available, it falls back to {@link StormJSON.stringify}.
5050
*
51-
* @param value The value to inspect.
51+
* @param value - The value to inspect.
5252
* @returns The string representation of the value.
5353
*/
5454
const inspect: (value: unknown) => string =
@@ -78,12 +78,12 @@ const inspect: (value: unknown) => string =
7878
*
7979
* @see https://sentry.io/
8080
*
81-
* @param client The Sentry client. If omitted, the global default client is used.
81+
* @param client - The Sentry client. If omitted, the global default client is used.
8282
* @returns A LogTape sink that sends logs to Sentry.
8383
*/
8484
export function getSink(client?: Client): LogSink {
8585
return (record: LogRecord) => {
86-
if (client == null) {
86+
if (!client) {
8787
client = getClient();
8888
}
8989

File renamed without changes.

packages/log-sentry/jest.config.ts

-3
This file was deleted.

packages/log-storage/src/base/base-sink.ts

+5-7
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,9 @@ import type {
2727
/**
2828
* Get a platform-independent file sink.
2929
*
30-
* @typeParam TFile The type of the file descriptor.
31-
* @param path A path to the file to write to.
32-
* @param options The options for the sink and the file driver.
33-
* @returns A sink that writes to the file. The sink is also a disposable
34-
* object that closes the file when disposed.
30+
* @param path - A path to the file to write to.
31+
* @param options - The options for the sink and the file driver.
32+
* @returns A sink that writes to the file. The sink is also a disposable object that closes the file when disposed.
3533
*/
3634
export function getBaseFileSink<TFile>(
3735
path: string,
@@ -56,8 +54,8 @@ export function getBaseFileSink<TFile>(
5654
* followed by a dot and a number, starting from 1. The number is incremented
5755
* for each rotation, and the maximum number of files to keep is `maxFiles`.
5856
*
59-
* @param path A path to the file to write to.
60-
* @param options The options for the sink and the file driver.
57+
* @param path - A path to the file to write to.
58+
* @param options - The options for the sink and the file driver.
6159
* @returns A sink that writes to the file. The sink is also a disposable
6260
* object that closes the file when disposed.
6361
*/

0 commit comments

Comments
 (0)