create vertical icons panel react lib

pull/1671/head
Joseph Izang 3 years ago
parent cb43c98791
commit 45bd42c606
  1. 35
      .eslintrc.json
  2. 0
      libs/remix-ui/vertical-icons-panel/src/lib/remix-ui-vertical-icons-panel.module.css
  3. 8
      nx.json
  4. 101
      workspace.json

@ -0,0 +1,35 @@
{
"root": true,
"ignorePatterns": ["**/*"],
"plugins": ["@nrwl/nx"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {
"@nrwl/nx/enforce-module-boundaries": [
"error",
{
"enforceBuildableLibDependency": true,
"allow": [],
"depConstraints": [
{
"sourceTag": "*",
"onlyDependOnLibsWithTags": ["*"]
}
]
}
]
}
},
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nrwl/nx/typescript"],
"rules": {}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nrwl/nx/javascript"],
"rules": {}
}
]
}

@ -139,13 +139,5 @@
"remix-ui-tabs": { "remix-ui-tabs": {
"tags": [] "tags": []
} }
},
"targetDependencies": {
"build": [
{
"target": "build",
"projects": "dependencies"
}
]
} }
} }

@ -1,5 +1,71 @@
{ {
"version": 1, "version": 1,
"cli": {
"defaultCollection": "@nrwl/react"
},
"defaultProject": "remix-ide",
"schematics": {
"@nrwl/workspace": {
"library": {
"linter": "eslint"
}
},
"@nrwl/cypress": {
"cypress-project": {
"linter": "eslint"
}
},
"@nrwl/react": {
"application": {
"style": "css",
"linter": "eslint",
"babel": true
},
"component": {
"style": "css"
},
"library": {
"style": "css",
"linter": "eslint"
}
},
"@nrwl/next": {
"application": {
"linter": "eslint"
}
},
"@nrwl/web": {
"application": {
"linter": "eslint"
}
},
"@nrwl/node": {
"application": {
"linter": "eslint"
},
"library": {
"linter": "eslint"
}
},
"@nrwl/nx-plugin": {
"plugin": {
"linter": "eslint"
}
},
"@nrwl/nest": {
"application": {
"linter": "eslint"
}
},
"@nrwl/express": {
"application": {
"linter": "eslint"
},
"library": {
"linter": "eslint"
}
}
},
"projects": { "projects": {
"remix-ide": { "remix-ide": {
"root": "apps/remix-ide", "root": "apps/remix-ide",
@ -1121,17 +1187,34 @@
"linter": "eslint" "linter": "eslint"
} }
}, },
"@nrwl/nest": { "@remix-ui-verticaliconspanel": {
"application": { "root": "libs/@remix-ui/verticaliconspanel",
"linter": "eslint" "sourceRoot": "libs/@remix-ui/verticaliconspanel/src",
"projectType": "library",
"architect": {
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"libs/@remix-ui/verticaliconspanel/**/*.{ts,tsx,js,jsx}"
]
}
}
} }
}, },
"@nrwl/express": { "remix-ui-vertical-icons-panel": {
"application": { "root": "libs/remix-ui/vertical-icons-panel",
"linter": "eslint" "sourceRoot": "libs/remix-ui/vertical-icons-panel/src",
}, "projectType": "library",
"library": { "architect": {
"linter": "eslint" "lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"libs/remix-ui/vertical-icons-panel/**/*.{ts,tsx,js,jsx}"
]
}
}
} }
} }
}, },

Loading…
Cancel
Save