feat: can build again
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "z-styles",
|
"name": "@hijlkema-codes/internal/z-styles",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"tslib": "^2.3.0"
|
"tslib": "^2.3.0"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
export * from './lib/normalize';
|
export { normalize } from './lib/normalize';
|
||||||
|
|
||||||
export * from './lib/variable.helper';
|
export { VariableHelper } from './lib/variable.helper';
|
||||||
|
|
||||||
export * from './lib/variable.func';
|
export { variable } from './lib/variable.func';
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
export * from './lib/panels-bottom-panel';
|
export * from './lib/bottom-panel.component';
|
||||||
|
|||||||
@@ -6,35 +6,24 @@
|
|||||||
"targets": {
|
"targets": {
|
||||||
"build": {
|
"build": {
|
||||||
"executor": "@nx/js:tsc",
|
"executor": "@nx/js:tsc",
|
||||||
"outputs": [
|
"outputs": ["{options.outputPath}"],
|
||||||
"{options.outputPath}"
|
|
||||||
],
|
|
||||||
"options": {
|
"options": {
|
||||||
"outputPath": "dist/libs/tooltip",
|
"outputPath": "dist/libs/tooltip",
|
||||||
"main": "libs/tooltip/src/index.ts",
|
"main": "libs/tooltip/src/index.ts",
|
||||||
"tsConfig": "libs/tooltip/tsconfig.lib.json",
|
"tsConfig": "libs/tooltip/tsconfig.lib.json",
|
||||||
"assets": [
|
"assets": ["libs/tooltip/*.md"]
|
||||||
"libs/tooltip/*.md"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lint": {
|
"lint": {
|
||||||
"executor": "@nx/linter:eslint",
|
"executor": "@nx/linter:eslint",
|
||||||
"outputs": [
|
"outputs": ["{options.outputFile}"],
|
||||||
"{options.outputFile}"
|
|
||||||
],
|
|
||||||
"options": {
|
"options": {
|
||||||
"lintFilePatterns": [
|
"lintFilePatterns": ["libs/tooltip/**/*.ts", "libs/tooltip/package.json"]
|
||||||
"libs/tooltip/**/*.ts",
|
|
||||||
"libs/tooltip/package.json"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"test": {
|
"test": {
|
||||||
"executor": "@nx/vite:test",
|
"executor": "@nx/vite:test",
|
||||||
"outputs": [
|
"outputs": ["{workspaceRoot}/coverage/libs/tooltip"],
|
||||||
"{workspaceRoot}/coverage/libs/tooltip"
|
|
||||||
],
|
|
||||||
"options": {
|
"options": {
|
||||||
"passWithNoTests": true,
|
"passWithNoTests": true,
|
||||||
"reportsDirectory": "../../coverage/libs/tooltip"
|
"reportsDirectory": "../../coverage/libs/tooltip"
|
||||||
@@ -54,9 +43,7 @@
|
|||||||
},
|
},
|
||||||
"build-storybook": {
|
"build-storybook": {
|
||||||
"executor": "@nx/storybook:build",
|
"executor": "@nx/storybook:build",
|
||||||
"outputs": [
|
"outputs": ["{options.outputDir}"],
|
||||||
"{options.outputDir}"
|
|
||||||
],
|
|
||||||
"options": {
|
"options": {
|
||||||
"outputDir": "dist/storybook/tooltip",
|
"outputDir": "dist/storybook/tooltip",
|
||||||
"configDir": "libs/tooltip/.storybook"
|
"configDir": "libs/tooltip/.storybook"
|
||||||
|
|||||||
@@ -49,7 +49,11 @@ export const positioning = css`
|
|||||||
|
|
||||||
export const variables = css`
|
export const variables = css`
|
||||||
:host {
|
:host {
|
||||||
${VariableHelper.fromProperty('--_tooltip--offset').withGroupModifier('tooltip').withVariableName('offset').withDefaultValue(0).toCss()}
|
${VariableHelper.fromProperty('--_tooltip--offset')
|
||||||
|
.withGroupModifier('tooltip')
|
||||||
|
.withVariableName('offset')
|
||||||
|
.withDefaultValue('0')
|
||||||
|
.toCss()}
|
||||||
${VariableHelper.fromProperty('--_tooltip--backdrop-color')
|
${VariableHelper.fromProperty('--_tooltip--backdrop-color')
|
||||||
.withVariableName('backdrop-color')
|
.withVariableName('backdrop-color')
|
||||||
.withGroupModifier('tooltip')
|
.withGroupModifier('tooltip')
|
||||||
|
|||||||
@@ -3,18 +3,8 @@
|
|||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "../../dist/out-tsc",
|
"outDir": "../../dist/out-tsc",
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
"types": [
|
"types": ["node"]
|
||||||
"node"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"include": [
|
"include": ["src/**/*.ts"],
|
||||||
"src/**/*.ts"
|
"exclude": ["jest.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts", "**/*.stories.ts", "**/*.stories.js"]
|
||||||
],
|
|
||||||
"exclude": [
|
|
||||||
"jest.config.ts",
|
|
||||||
"src/**/*.spec.ts",
|
|
||||||
"src/**/*.test.ts",
|
|
||||||
"**/*.stories.ts",
|
|
||||||
"**/*.stories.js"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
50
package.json
50
package.json
@@ -5,14 +5,14 @@
|
|||||||
"scripts": {},
|
"scripts": {},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"lit": "^3.1.0",
|
"lit": "^3.1.4",
|
||||||
"react": "^18.2.0",
|
"react": "^18.3.1",
|
||||||
"react-dom": "^18.2.0",
|
"react-dom": "^18.3.1",
|
||||||
"tslib": "^2.6.2",
|
"tslib": "^2.6.3",
|
||||||
"zod": "^3.22.4"
|
"zod": "^3.23.8"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/plugin-proposal-decorators": "^7.23.7",
|
"@babel/plugin-proposal-decorators": "^7.24.7",
|
||||||
"@nx/eslint-plugin": "19.5.6",
|
"@nx/eslint-plugin": "19.5.6",
|
||||||
"@nx/jest": "19.5.6",
|
"@nx/jest": "19.5.6",
|
||||||
"@nx/js": "19.5.6",
|
"@nx/js": "19.5.6",
|
||||||
@@ -21,36 +21,36 @@
|
|||||||
"@nx/vite": "19.5.6",
|
"@nx/vite": "19.5.6",
|
||||||
"@nx/web": "19.5.6",
|
"@nx/web": "19.5.6",
|
||||||
"@nx/workspace": "19.5.6",
|
"@nx/workspace": "19.5.6",
|
||||||
"@storybook/addon-essentials": "7.6.7",
|
"@storybook/addon-essentials": "8.2.7",
|
||||||
"@storybook/addon-interactions": "7.6.7",
|
"@storybook/addon-interactions": "8.2.7",
|
||||||
"@storybook/core-server": "7.6.7",
|
"@storybook/core-server": "8.2.7",
|
||||||
"@storybook/jest": "0.2.3",
|
"@storybook/jest": "0.2.3",
|
||||||
"@storybook/test-runner": "0.16.0",
|
"@storybook/test-runner": "0.19.1",
|
||||||
"@storybook/testing-library": "0.2.2",
|
"@storybook/testing-library": "0.2.2",
|
||||||
"@storybook/web-components": "^7.6.7",
|
"@storybook/web-components": "^8.2.7",
|
||||||
"@storybook/web-components-vite": "7.6.7",
|
"@storybook/web-components-vite": "8.2.7",
|
||||||
"@storybook/web-components-webpack5": "7.6.7",
|
"@storybook/web-components-webpack5": "8.2.7",
|
||||||
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
||||||
"@types/jest": "^29.5.11",
|
"@types/jest": "^29.5.12",
|
||||||
"@types/node": "18.19.9",
|
"@types/node": "22.1.0",
|
||||||
"@typescript-eslint/eslint-plugin": "7.18.0",
|
"@typescript-eslint/eslint-plugin": "8.0.0",
|
||||||
"@typescript-eslint/parser": "7.18.0",
|
"@typescript-eslint/parser": "8.0.0",
|
||||||
"@vitest/coverage-c8": "~0.33.0",
|
"@vitest/coverage-c8": "~0.33.0",
|
||||||
"@vitest/ui": "1.6.0",
|
"@vitest/ui": "2.0.5",
|
||||||
"eslint": "8.57.0",
|
"eslint": "9.8.0",
|
||||||
"eslint-config-prettier": "9.1.0",
|
"eslint-config-prettier": "9.1.0",
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"jest-environment-node": "^29.7.0",
|
"jest-environment-node": "^29.7.0",
|
||||||
"nx": "19.5.6",
|
"nx": "19.5.6",
|
||||||
"prettier": "^3.1.1",
|
"prettier": "^3.3.3",
|
||||||
"rxjs": "^7.8.1",
|
"rxjs": "^7.8.1",
|
||||||
"ts-jest": "^29.1.1",
|
"ts-jest": "^29.2.4",
|
||||||
"ts-node": "10.9.2",
|
"ts-node": "10.9.2",
|
||||||
"typescript": "5.5.4",
|
"typescript": "5.5.4",
|
||||||
"verdaccio": "^5.29.0",
|
"verdaccio": "^5.32.1",
|
||||||
"vite": "5.0.11",
|
"vite": "5.3.5",
|
||||||
"vite-plugin-dts": "~3.7.0",
|
"vite-plugin-dts": "4.0.0-beta.2",
|
||||||
"vitest": "1.6.0"
|
"vitest": "2.0.5"
|
||||||
},
|
},
|
||||||
"nx": {
|
"nx": {
|
||||||
"includedScripts": []
|
"includedScripts": []
|
||||||
|
|||||||
10975
pnpm-lock.yaml
generated
10975
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user