Skip to content

Commit 2ca4606

Browse files
committed
feat: separated NonPrimitive and Object types
1 parent 4f68583 commit 2ca4606

55 files changed

Lines changed: 183 additions & 109 deletions

Some content is hidden

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

.oxlintrc.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"options": {
3-
"typeAware": true
3+
"typeAware": true,
4+
"reportUnusedDisableDirectives": "error",
5+
"typeCheck": true
46
},
57
"ignorePatterns": [
68
"/node_modules/",

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"homepage": "https://github.com/parischap/effect-libs",
88
"scripts": {
99
"test-all": "vitest run",
10-
"lint": "oxlint --type-check --report-unused-disable-directives --disable-nested-config",
11-
"lint-fix": "oxlint --fix",
12-
"fmt": "oxfmt --disable-nested-config --list-different",
10+
"lint": "oxlint --disable-nested-config",
11+
"lint-fix": "oxlint --fix --disable-nested-config",
12+
"fmt": "oxfmt --disable-nested-config",
1313
"commands": "tsx node_modules/@parischap/configs/esm/bin/commands.ts",
1414
"prepare-go": "effect-tsgo patch",
1515
"build-all": "pnpm --if-present -r build",

packages/ansi-styles/.oxlintrc.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"options": {
3-
"typeAware": true
3+
"typeAware": true,
4+
"reportUnusedDisableDirectives": "error",
5+
"typeCheck": true
46
},
57
"ignorePatterns": [
68
"/node_modules/",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
remote_theme: mikearnaldi/just-the-docs
2+
3+
# Enable or disable the site search
4+
search_enabled: true
5+
6+
# Aux links for the upper right navigation
7+
aux_links:
8+
'@parischap/ansi-styles on GitHub':
9+
- 'https://github.com/parischap/effect-libs/tree/master/packages/ansi-styles'

packages/ansi-styles/docs/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: Home
3+
nav_order: 1
4+
---

packages/ansi-styles/esm/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ export * as ASPalette from './Palette.js';
77
export * as ASRgbColor from './Color/RgbColor.js';
88
export * as ASStyle from './Style.js';
99
export * as ASText from './Text.js';
10-
export * as ASThreeBitColor from './Color/ThreeBitColor.js';
10+
export * as ASThreeBitColor from './Color/ThreeBitColor.js';

packages/ansi-styles/package.config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
},
66
"examples": ["basic-usage.ts", "cancelling-a-style.ts", "simple-colors.ts", "all-colors.ts"],
77
"environment": "Neutral",
8-
"buildMethod": "NoBundling",
8+
"buildMethod": "InternalAndNpmBundling",
99
"version": "1.0.0",
10-
"publish": true,
10+
"publishToNpm": true,
1111
"hasDocGen": true,
1212
"keywords": [
1313
"terminal",

packages/ansi-styles/package.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"homepage": "https://github.com/parischap/effect-libs/tree/master/packages/ansi-styles",
88
"scripts": {
99
"test-all": "vitest run",
10-
"lint": "oxlint --type-check --report-unused-disable-directives --disable-nested-config",
11-
"lint-fix": "oxlint --fix",
12-
"fmt": "oxfmt --disable-nested-config --list-different",
10+
"lint": "oxlint --disable-nested-config",
11+
"lint-fix": "oxlint --fix --disable-nested-config",
12+
"fmt": "oxfmt --disable-nested-config",
1313
"commands": "tsx node_modules/@parischap/configs/esm/bin/commands.ts",
1414
"prepare-go": "effect-tsgo patch",
1515
"build-all": "pnpm --if-present -r build",
@@ -44,9 +44,6 @@
4444
".": {
4545
"default": "./esm/index.ts"
4646
},
47-
"./AS": {
48-
"default": "./esm/.DS_Store"
49-
},
5047
"./ASBackgroundColorStyleCharacteristic": {
5148
"default": "./esm/internal/OptionalStyleCharacteristic/ColorOptionalStyleCharacteristic/BackgroundColorStyleCharacteristic.ts"
5249
},

packages/ansi-styles/tsconfig.esm.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"outDir": "dist/esm",
1212
"tsBuildInfoFile": ".tsbuildinfo/esm.tsbuildinfo",
1313
"noEmit": false,
14+
"target": "es2020",
1415
"emitDeclarationOnly": true,
1516
"stripInternal": false,
1617
"types": []

packages/conversions/.oxlintrc.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"options": {
3-
"typeAware": true
3+
"typeAware": true,
4+
"reportUnusedDisableDirectives": "error",
5+
"typeCheck": true
46
},
57
"ignorePatterns": [
68
"/node_modules/",

0 commit comments

Comments
 (0)