Skip to content

Commit

Permalink
V3.0.0 (#54)
Browse files Browse the repository at this point in the history
* esm support and migration for v2

* v3.0.0

* added epic stack for testing

* moved cjs/esm apps to test apps folder

* readme update
  • Loading branch information
AlemTuzlak authored Sep 23, 2023
1 parent bf83dbc commit 51fd619
Show file tree
Hide file tree
Showing 541 changed files with 57,419 additions and 50,705 deletions.
15 changes: 11 additions & 4 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,23 @@ module.exports = {
ignorePatterns: [
"node_modules",
"dist",
"src/remix-app-for-testing",
"src/epic-stack-remix-dev-tools",
"src/cjs-app",
"src/esm-app",
"src/documentation",
".eslintrc.cjs",
"tailwind.config.js",
"src/external",
"src/test-apps",
],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
"plugin:require-extensions/recommended",
],
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:react-hooks/recommended"],
parser: "@typescript-eslint/parser",
parserOptions: { ecmaVersion: "latest", sourceType: "module" },
plugins: ["@typescript-eslint"],
plugins: ["@typescript-eslint", "require-extensions"],
rules: {
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/ban-ts-comment": "off",
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,5 @@ dist
.yarn/install-state.gz
.pnp.*

**/*/.DS_Store
**/*/.DS_Store

5 changes: 3 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
src/remix-app-for-testing
src/epic-stack-remix-dev-tools
src/cjs-app
src/esm-app
src/test-apps
Loading

0 comments on commit 51fd619

Please sign in to comment.