Skip to content

Commit 4f94915

Browse files
committed
refactor: v2
1 parent 3a6c1f5 commit 4f94915

7 files changed

Lines changed: 7317 additions & 9432 deletions

File tree

.npmrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# - npm
2+
legacy-peer-deps=true
3+
4+
# - pnpm
5+
# auto-install-peers=false
6+
# shamefully-hoist=true
7+
strict-peer-dependencies=false

.vscode/settings.json

Lines changed: 39 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,43 @@
11
{
2-
"mochaExplorer.env": {
3-
"NODE_ENV": "test"
4-
},
5-
"webhint.enableTelemetry": "disabled",
6-
"typescript.preferences.importModuleSpecifier": "relative",
7-
"javascript.preferences.importModuleSpecifier": "relative",
8-
"importSorter.generalConfiguration.sortOnBeforeSave": true,
9-
"importSorter.generalConfiguration.sortImportsInDirectory": true,
10-
"typescript.updateImportsOnFileMove.enabled": "always",
11-
"editor.formatOnSave": true,
122
"[jsonc]": {
133
"editor.defaultFormatter": "esbenp.prettier-vscode"
14-
}
4+
},
5+
"editor.formatOnSave": true,
6+
"editor.renderWhitespace": "all",
7+
// Configure glob patterns for excluding files and folders.
8+
// For example, the files explorer decides which files and folders to show
9+
// or hide based on this setting.
10+
// Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).
11+
"files.exclude": {
12+
"**/.git": true,
13+
"**/.svn": true,
14+
"**/.hg": true,
15+
"**/CVS": true,
16+
"**/.DS_Store": true
17+
},
18+
// Configure glob patterns of file paths to exclude from file watching.
19+
// Patterns must match on absolute paths
20+
// (i.e. prefix with ** or the full path to match properly).
21+
// Changing this setting requires a restart.
22+
// When you experience Code consuming lots of cpu time on startup,
23+
// you can exclude large folders to reduce the initial load.
24+
"files.watcherExclude": {
25+
"**/.git/objects/**": true,
26+
"**/.git/subtree-cache/**": true,
27+
"**/node_modules/**": true,
28+
"**/tmp/**": true,
29+
"**/bower_components/**": true,
30+
"**/dist/**": true
31+
},
32+
// Configure glob patterns for excluding files and folders in searches.
33+
// Inherits all glob patterns from the `files.exclude` setting.
34+
// Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).
35+
"search.exclude": {
36+
"**/node_modules": true,
37+
"**/bower_components": true
38+
},
39+
"javascript.preferences.importModuleSpecifier": "relative",
40+
"javascript.updateImportsOnFileMove.enabled": "always",
41+
"typescript.preferences.importModuleSpecifier": "relative",
42+
"typescript.updateImportsOnFileMove.enabled": "always"
1543
}

commitlint.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
module.exports = require('./packages/git-hooks/commitlint.config');
1+
module.exports = {
2+
extends: ['@commitlint/config-conventional'],
3+
};

lerna.json

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
11
{
2-
"packages": [
3-
"packages/cli/core/*",
4-
"packages/cli/create-leanup",
5-
"packages/cli/frameworks/*",
6-
"packages/cli/lup",
7-
"packages/cli/plugins/*",
8-
"packages/form",
9-
"packages/git-hooks",
10-
"packages/lib",
11-
"packages/openapi",
12-
"packages/stack/*"
13-
],
2+
"packages": ["packages/create-leanup", "packages/form", "packages/lib", "packages/openapi", "packages/stack/**"],
143
"version": "2.0.0-rc.78"
154
}

0 commit comments

Comments
 (0)