Skip to content

Commit

Permalink
perf: Update environment and ignore files
Browse files Browse the repository at this point in the history
  • Loading branch information
Marinerer committed Sep 24, 2024
1 parent 8307d7e commit 64762dd
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 6 deletions.
4 changes: 2 additions & 2 deletions presets/.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
APP_ENV=production
APP_API_URL=http://api.com
APP_ENV=development
APP_API_URL=http://test.api.com
2 changes: 2 additions & 0 deletions presets/.env.production
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
APP_ENV=production
APP_API_URL=http://api.com
21 changes: 17 additions & 4 deletions presets/.gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,25 @@
.DS_Store
node_modules
/dist
.DS_Store
dist
*.local

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
*.sw?

*.tsbuildinfo
15 changes: 15 additions & 0 deletions presets/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
registry=https://registry.npmjs.org/
# registry=https://registry.npmmirror.com/

strict-peer-dependencies=false
enable-pre-post-scripts=true
engine-strict=false

public-hoist-pattern[]=*eslint*
public-hoist-pattern[]=@eslint*
public-hoist-pattern[]=*prettier*
public-hoist-pattern[]=lint-staged
public-hoist-pattern[]=*stylelint*
public-hoist-pattern[]=@commitlint*
public-hoist-pattern[]=husky
public-hoist-pattern[]=core-js
File renamed without changes.

0 comments on commit 64762dd

Please sign in to comment.