@adbayb/stack 2.40.0-next-c8ed12d → 2.40.0-next-9f3b748

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -13,7 +13,7 @@
13
13
  - Support for several application templates (for now, only a default template is available, but others can be added later)
14
14
  - Standardized file structure including optional folder creation such as `examples`, `packages`, ...
15
15
  - Enable all project lifecycle steps with commands from the setup, check, fix, build, and test to the versioning and release
16
- - Built-in configuration preset setup (including Node/NPM runtime, Git ignore/hooks, [TypeScript](https://github.com/adbayb/stack/blob/main/stack/configs/typescript/), [ESLint](https://github.com/adbayb/stack/blob/main/stack/configs/eslint/), [Prettier](https://github.com/adbayb/stack/blob/main/stack/configs/prettier/), EditorConfig, Renovate, Changesets, and VSCode)
16
+ - Built-in configuration preset setup (including Node/NPM runtime, Git ignore/hooks, [TypeScript](https://github.com/adbayb/stack/blob/main/stack/configs/typescript/), [Oxlint](https://github.com/adbayb/stack/blob/main/stack/configs/oxlint/), [Oxfmt](https://github.com/adbayb/stack/blob/main/stack/configs/oxfmt/), EditorConfig, Renovate, Changesets, and VSCode)
17
17
  - A welcoming environment for users and contributors with the continuous integration setup, and the creation of `README.md`, `CONTRIBUTING.md`, and GitHub template files (including issue and pull request ones), ...
18
18
  - An optimized development environment with command caching (no build needed if nothing changes)
19
19
 
@@ -63,13 +63,13 @@ stack release
63
63
 
64
64
  ### Available configurations
65
65
 
66
- - [@adbayb/stack/eslint](https://github.com/adbayb/stack/blob/main/stack/configs/eslint/) to align logical and stylistic rules across projects.
67
- - [@adbayb/stack/prettier](https://github.com/adbayb/stack/blob/main/stack/configs/prettier/) to align code formatting conventions across projects.
66
+ - [@adbayb/stack/oxlint](https://github.com/adbayb/stack/blob/main/stack/configs/oxlint/) to align logical and stylistic rules across projects.
67
+ - [@adbayb/stack/oxfmt](https://github.com/adbayb/stack/blob/main/stack/configs/oxfmt/) to align code formatting conventions across projects.
68
68
  - [@adbayb/stack/typescript](https://github.com/adbayb/stack/blob/main/stack/configs/typescript/) to align type checking and processing across projects.
69
69
 
70
70
  ### Used technologies
71
71
 
72
- - **Static code analysis**: ESLint, Prettier
72
+ - **Static code analysis**: Oxlint, Oxfmt
73
73
  - **Node package manager**: PNPM
74
74
  - **Task orchestration**: Turborepo
75
75
  - **Release**: Changesets
package/dist/index.js CHANGED
@@ -441,7 +441,7 @@ const PRESERVE_FILES = ["node_modules"];
441
441
 
442
442
  //#endregion
443
443
  //#region package.json
444
- var version = "2.40.0-next-c8ed12d";
444
+ var version = "2.40.0-next-9f3b748";
445
445
 
446
446
  //#endregion
447
447
  //#region src/commands/create.ts
@@ -609,8 +609,6 @@ const createTemplateEngine = async (workingPath, { projectName, templateModel, t
609
609
  });
610
610
  const gitignoreFile = join(workingPath, ".gitignore.tmpl");
611
611
  if (existsSync(gitignoreFile)) await rename(gitignoreFile, join(workingPath, ".gitignore"));
612
- const eslintConfigFile = join(workingPath, "eslint.config.js.tmpl");
613
- if (existsSync(eslintConfigFile)) await rename(eslintConfigFile, join(workingPath, "eslint.config.js"));
614
612
  const templateEntries = await getTemplateEntries(workingPath);
615
613
  process.chdir(workingPath);
616
614
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "2.40.0-next-c8ed12d",
3
+ "version": "2.40.0-next-9f3b748",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "keywords": [
6
6
  "development",
@@ -0,0 +1 @@
1
+ export { default } from "@adbayb/stack/oxfmt";
@@ -0,0 +1 @@
1
+ export { default } from "@adbayb/stack/oxlint";
@@ -0,0 +1 @@
1
+ export { default } from "@adbayb/stack/oxfmt";
@@ -0,0 +1 @@
1
+ export { default } from "@adbayb/stack/oxlint";
@@ -1 +0,0 @@
1
- export { default } from "@adbayb/stack/eslint";
@@ -1 +0,0 @@
1
- export { default } from "@adbayb/stack/eslint";