Skip to content

Commit

Permalink
move eslint-plugin-gene to eslint-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
kopach committed Nov 4, 2024
1 parent fbe320c commit b78afe0
Show file tree
Hide file tree
Showing 19 changed files with 26 additions and 25 deletions.
3 changes: 2 additions & 1 deletion docs/docs-site/package.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"name": "docs-site"
"name": "docs-site",
"private": true
}
2 changes: 1 addition & 1 deletion packages/create/bin/create-gene-workspace.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async function runCommands() {
await execCommand('pnpm', [
'install',
`@brainly-gene/tools@${packageVersion}`,
`@brainly-gene/eslint-plugin-gene@${packageVersion}`,
`@brainly-gene/eslint-plugin@${packageVersion}`,
'-D',
]);

Expand Down
7 changes: 0 additions & 7 deletions packages/eslint-plugin-gene/README.md

This file was deleted.

File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions packages/eslint-plugin/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# eslint-plugin

This library was generated with [Nx](https://nx.dev).

## Building

Run `nx build eslint-plugin` to build the library.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/schema",
"name": "eslint-plugin-gene",
"name": "eslint-plugin",
"version": "0.0.1",
"generators": {}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@brainly-gene/eslint-plugin-gene",
"name": "@brainly-gene/eslint-plugin",
"version": "0.1.0",
"license": "Apache-2.0",
"main": "src/index.js",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"name": "packages-eslint-plugin-gene",
"name": "packages-eslint-plugin",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/eslint-plugin-gene/src",
"sourceRoot": "packages/eslint-plugin/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/eslint-plugin-gene",
"main": "packages/eslint-plugin-gene/src/index.ts",
"tsConfig": "packages/eslint-plugin-gene/tsconfig.lib.json",
"outputPath": "dist/packages/eslint-plugin",
"main": "packages/eslint-plugin/src/index.ts",
"tsConfig": "packages/eslint-plugin/tsconfig.lib.json",
"assets": [
"packages/eslint-plugin-gene/*.md",
"packages/eslint-plugin/*.md",
{
"input": "./packages/eslint-plugin-gene/src",
"input": "./packages/eslint-plugin/src",
"glob": "**/!(*.ts)",
"output": "./src"
},
{
"input": "./packages/eslint-plugin-gene/src",
"input": "./packages/eslint-plugin/src",
"glob": "**/*.d.ts",
"output": "./src"
},
{
"input": "./packages/eslint-plugin-gene",
"input": "./packages/eslint-plugin",
"glob": "generators.json",
"output": "."
},
{
"input": "./packages/eslint-plugin-gene",
"input": "./packages/eslint-plugin",
"glob": "executors.json",
"output": "."
}
Expand All @@ -41,10 +41,10 @@
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"packages/eslint-plugin-gene/**/*.ts",
"packages/eslint-plugin-gene/generators.json",
"packages/eslint-plugin-gene/executors.json",
"packages/eslint-plugin-gene/package.json"
"packages/eslint-plugin/**/*.ts",
"packages/eslint-plugin/generators.json",
"packages/eslint-plugin/executors.json",
"packages/eslint-plugin/package.json"
]
}
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b78afe0

Please sign in to comment.