Skip to content

Commit

Permalink
feat: proper ignore cli
Browse files Browse the repository at this point in the history
  • Loading branch information
darekf77 committed Jun 4, 2024
1 parent 82cb843 commit 74a18b1
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 19 deletions.
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

# Editor configuration, see http://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single


[*.md]
max_line_length = off
trim_trailing_whitespace = false
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ Thumbs.db
/backup
/module
/www
/.eslintrc.json
/.prettierignore
/.prettierrc
/.editorconfig
/Thumbs.db
/.DS_Store
/**/.DS_Store
Expand Down
8 changes: 4 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@
"backup": true,
"module": true,
"www": true,
".eslintrc.json": true,
".prettierignore": true,
".prettierrc": true,
".editorconfig": true,
"Thumbs.db": true,
".DS_Store": true,
"**/.DS_Store": true,
Expand All @@ -45,6 +41,10 @@
".npmignore": true,
".babelrc": true,
".npmrc": true,
".eslintrc.json": true,
".prettierignore": true,
".prettierrc": true,
".editorconfig": true,
"devDependencies.json": true,
"package.json": true,
"logo.svg": true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
(for windows only git bash supported https://gitforwindows.org)


2. (linux only) Increased memory limit:
2. Increased memory limit:
```
export NODE_OPTIONS=--max_old_space_size=4096
```
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"homepage": "https://github.com/darekf77/firedev#readme"
},
"name": "firedev",
"version": "16.100.16",
"version": "16.100.18",
"description": "Isomorphic solution for backend and frontend",
"scripts": {},
"repository": {
Expand All @@ -67,7 +67,7 @@
"ora": "3.4.0",
"socket.io": "2.4.1",
"tslib": "~2.3.0",
"tnp": "~16.100.22"
"tnp": "~16.100.32"
},
"license": "MIT",
"private": false,
Expand Down Expand Up @@ -334,9 +334,9 @@
"threads": "1.7.0",
"tnp-cli": "16.100.5",
"tnp-config": "16.100.10",
"tnp-core": "16.100.22",
"tnp-core": "16.100.23",
"tnp-db": "16.100.9",
"tnp-helpers": "16.100.20",
"tnp-helpers": "16.100.25",
"tnp-models": "16.100.10",
"ts-debug": "1.3.0",
"ts-json-schema-generator": "2.1.1",
Expand Down
8 changes: 4 additions & 4 deletions projects/container-v4/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,7 @@
"file-loader": "1.1.5",
"file-saver": "2.0.5",
"file-type": "18.5.0",
"firedev": "^16",
"firedev-crud": "16.100.10",
"firedev-crud-deamon": "16.100.9",
"firedev-ports": "16.100.10",
Expand Down Expand Up @@ -544,9 +545,9 @@
"threads": "1.7.0",
"tnp-cli": "16.100.5",
"tnp-config": "16.100.10",
"tnp-core": "16.100.22",
"tnp-core": "16.100.23",
"tnp-db": "16.100.9",
"tnp-helpers": "16.100.20",
"tnp-helpers": "16.100.25",
"tnp-models": "16.100.10",
"ts-debug": "1.3.0",
"ts-json-schema-generator": "2.1.1",
Expand All @@ -570,8 +571,7 @@
"webpack-dev-middleware": "~6.0.2",
"webpack-dev-server": "~4.13.2",
"yup": "1.1.1",
"zone.js": "~0.13.0",
"firedev": "^16"
"zone.js": "~0.13.0"
},
"devDependencies": {},
"license": "UNLICENSED",
Expand Down
2 changes: 1 addition & 1 deletion src/assets/shared/shared_folder_info.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
THIS FILE IS GENERATED. THIS FILE IS GENERATED. THIS FILE IS GENERATED.

Assets from this folder are being shipped with this npm package ([email protected].16)
Assets from this folder are being shipped with this npm package ([email protected].18)
created from this project.

THIS FILE IS GENERATED.THIS FILE IS GENERATED. THIS FILE IS GENERATED.
Expand Down
3 changes: 2 additions & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
let tnpStart = require('tnp/src').start;
// @firedev-ignore
let tnpStart = require('tnp/cli').start;
//#region @notForNpm
let tnpStartLocal = require('tnp/src').start;
//#endregion
Expand Down

0 comments on commit 74a18b1

Please sign in to comment.