magic-renamer 18.0.1 → 18.0.2
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 +5 -5
- package/assets/shared/shared_folder_info.txt +1 -1
- package/bin/magic-renamer +10 -10
- package/bin/magic-renamer-debug +10 -10
- package/browser/README.md +24 -24
- package/browser/package.json +25 -0
- package/client/README.md +24 -24
- package/firedev.jsonc +38 -38
- package/package.json +4 -4
- package/tmp-environment.json +29 -28
- package/websql/README.md +24 -24
- package/websql/package.json +25 -0
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
# magic renamer
|
|
2
|
-
|
|
3
|
-
rename/copy things in magical way in [firedev.io](https://github.com/darekf77/firedev) Visual Studio Plugin...
|
|
4
|
-
|
|
5
|
-
<p style="text-align: center;"><img src="./firedev.png" ></p>
|
|
1
|
+
# magic renamer
|
|
2
|
+
|
|
3
|
+
rename/copy things in magical way in [firedev.io](https://github.com/darekf77/firedev) Visual Studio Plugin...
|
|
4
|
+
|
|
5
|
+
<p style="text-align: center;"><img src="./firedev.png" ></p>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
THIS FILE IS GENERATED. THIS FILE IS GENERATED. THIS FILE IS GENERATED.
|
|
2
2
|
|
|
3
|
-
Assets from this folder are being shipped with this npm package (magic-renamer@18.0.
|
|
3
|
+
Assets from this folder are being shipped with this npm package (magic-renamer@18.0.2)
|
|
4
4
|
created from this project.
|
|
5
5
|
|
|
6
6
|
THIS FILE IS GENERATED.THIS FILE IS GENERATED. THIS FILE IS GENERATED.
|
package/bin/magic-renamer
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
var { fse, crossPlatformPath, path } = require('tnp-core');
|
|
3
|
-
var path = {
|
|
4
|
-
dist: path.join(crossPlatformPath(__dirname), '../dist/index.js'),
|
|
5
|
-
bundle: path.join(crossPlatformPath(__dirname), '../index.js')
|
|
6
|
-
}
|
|
7
|
-
var p = fse.existsSync(path.dist) ? path.dist : path.bundle;
|
|
8
|
-
global.globalSystemToolMode = true;
|
|
9
|
-
var run = require(p).run;
|
|
10
|
-
run(process.argv.slice(2));
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
var { fse, crossPlatformPath, path } = require('tnp-core');
|
|
3
|
+
var path = {
|
|
4
|
+
dist: path.join(crossPlatformPath(__dirname), '../dist/index.js'),
|
|
5
|
+
bundle: path.join(crossPlatformPath(__dirname), '../index.js')
|
|
6
|
+
}
|
|
7
|
+
var p = fse.existsSync(path.dist) ? path.dist : path.bundle;
|
|
8
|
+
global.globalSystemToolMode = true;
|
|
9
|
+
var run = require(p).run;
|
|
10
|
+
run(process.argv.slice(2));
|
package/bin/magic-renamer-debug
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
#!/usr/bin/env node --inspect
|
|
2
|
-
var { fse, crossPlatformPath, path } = require('tnp-core');
|
|
3
|
-
var path = {
|
|
4
|
-
dist: path.join(crossPlatformPath(__dirname), '../dist/index.js'),
|
|
5
|
-
bundle: path.join(crossPlatformPath(__dirname), '../index.js')
|
|
6
|
-
}
|
|
7
|
-
var p = fse.existsSync(path.dist) ? path.dist : path.bundle;
|
|
8
|
-
global.globalSystemToolMode = true;
|
|
9
|
-
var run = require(p).run;
|
|
10
|
-
run(process.argv.slice(2));
|
|
1
|
+
#!/usr/bin/env node --inspect
|
|
2
|
+
var { fse, crossPlatformPath, path } = require('tnp-core');
|
|
3
|
+
var path = {
|
|
4
|
+
dist: path.join(crossPlatformPath(__dirname), '../dist/index.js'),
|
|
5
|
+
bundle: path.join(crossPlatformPath(__dirname), '../index.js')
|
|
6
|
+
}
|
|
7
|
+
var p = fse.existsSync(path.dist) ? path.dist : path.bundle;
|
|
8
|
+
global.globalSystemToolMode = true;
|
|
9
|
+
var run = require(p).run;
|
|
10
|
+
run(process.argv.slice(2));
|
package/browser/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# MyLib
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "magic-renamer",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^13.2.0",
|
|
6
|
+
"@angular/core": "^13.2.0"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"tslib": "^2.3.0"
|
|
10
|
+
},
|
|
11
|
+
"module": "fesm2022/magic-renamer.mjs",
|
|
12
|
+
"typings": "index.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
"./package.json": {
|
|
15
|
+
"default": "./package.json"
|
|
16
|
+
},
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./index.d.ts",
|
|
19
|
+
"esm2022": "./esm2022/magic-renamer.mjs",
|
|
20
|
+
"esm": "./esm2022/magic-renamer.mjs",
|
|
21
|
+
"default": "./fesm2022/magic-renamer.mjs"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"sideEffects": false
|
|
25
|
+
}
|
package/client/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# MyLib
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
package/firedev.jsonc
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
{
|
|
2
|
-
"resources": ["README.md"],
|
|
3
|
-
|
|
4
|
-
"overrided": {
|
|
5
|
-
"ignoreDepsPattern": [],
|
|
6
|
-
"includeAsDev": [],
|
|
7
|
-
"includeOnly": ["tnp-helpers"],
|
|
8
|
-
"dependencies": {},
|
|
9
|
-
"linkedFolders": [],
|
|
10
|
-
"npmFixes": []
|
|
11
|
-
},
|
|
12
|
-
|
|
13
|
-
"smartContainerBuildTarget": "",
|
|
14
|
-
"linkedRepos": [],
|
|
15
|
-
|
|
16
|
-
"libReleaseOptions": {
|
|
17
|
-
"nodts": false,
|
|
18
|
-
"obscure": false,
|
|
19
|
-
"ugly": false,
|
|
20
|
-
"includeNodeModules": false,
|
|
21
|
-
"cliBuildNoDts": false,
|
|
22
|
-
"cliBuildObscure": false,
|
|
23
|
-
"cliBuildIncludeNodeModules": false,
|
|
24
|
-
"cliBuildUglify": false
|
|
25
|
-
},
|
|
26
|
-
|
|
27
|
-
"smartContainerTarget": "",
|
|
28
|
-
"type": "isomorphic-lib",
|
|
29
|
-
"isCoreProject": false,
|
|
30
|
-
"useFramework": false,
|
|
31
|
-
"required": [],
|
|
32
|
-
"version": "v18",
|
|
33
|
-
"isGenerated": false,
|
|
34
|
-
"requiredServers": [],
|
|
35
|
-
"license": "UNLICENSED",
|
|
36
|
-
"private": false,
|
|
37
|
-
"main": "index.js",
|
|
38
|
-
"workerPlugins": {}
|
|
1
|
+
{
|
|
2
|
+
"resources": ["README.md"],
|
|
3
|
+
|
|
4
|
+
"overrided": {
|
|
5
|
+
"ignoreDepsPattern": [],
|
|
6
|
+
"includeAsDev": [],
|
|
7
|
+
"includeOnly": ["tnp-helpers"],
|
|
8
|
+
"dependencies": {},
|
|
9
|
+
"linkedFolders": [],
|
|
10
|
+
"npmFixes": []
|
|
11
|
+
},
|
|
12
|
+
|
|
13
|
+
"smartContainerBuildTarget": "",
|
|
14
|
+
"linkedRepos": [],
|
|
15
|
+
|
|
16
|
+
"libReleaseOptions": {
|
|
17
|
+
"nodts": false,
|
|
18
|
+
"obscure": false,
|
|
19
|
+
"ugly": false,
|
|
20
|
+
"includeNodeModules": false,
|
|
21
|
+
"cliBuildNoDts": false,
|
|
22
|
+
"cliBuildObscure": false,
|
|
23
|
+
"cliBuildIncludeNodeModules": false,
|
|
24
|
+
"cliBuildUglify": false
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
"smartContainerTarget": "",
|
|
28
|
+
"type": "isomorphic-lib",
|
|
29
|
+
"isCoreProject": false,
|
|
30
|
+
"useFramework": false,
|
|
31
|
+
"required": [],
|
|
32
|
+
"version": "v18",
|
|
33
|
+
"isGenerated": false,
|
|
34
|
+
"requiredServers": [],
|
|
35
|
+
"license": "UNLICENSED",
|
|
36
|
+
"private": false,
|
|
37
|
+
"main": "index.js",
|
|
38
|
+
"workerPlugins": {}
|
|
39
39
|
}
|
package/package.json
CHANGED
|
@@ -39,17 +39,17 @@
|
|
|
39
39
|
"workerPlugins": {}
|
|
40
40
|
},
|
|
41
41
|
"name": "magic-renamer",
|
|
42
|
-
"version": "18.0.
|
|
42
|
+
"version": "18.0.2",
|
|
43
43
|
"bin": {
|
|
44
44
|
"magic-renamer": "bin/magic-renamer",
|
|
45
45
|
"magic-renamer-debug": "bin/magic-renamer-debug"
|
|
46
46
|
},
|
|
47
47
|
"license": "UNLICENSED",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"tnp-helpers": "~
|
|
49
|
+
"tnp-helpers": "~18.0.2"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {},
|
|
52
52
|
"private": false,
|
|
53
|
-
"lastBuildTagHash": "
|
|
54
|
-
"main": "
|
|
53
|
+
"lastBuildTagHash": "ff7e746e718f13a101a3b9d5efca4e9cdc358387",
|
|
54
|
+
"main": "index.js"
|
|
55
55
|
}
|
package/tmp-environment.json
CHANGED
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"workerPlugins": {}
|
|
44
44
|
},
|
|
45
45
|
"name": "magic-renamer",
|
|
46
|
-
"version": "18.0.
|
|
46
|
+
"version": "18.0.2",
|
|
47
47
|
"bin": {
|
|
48
48
|
"magic-renamer": "bin/magic-renamer",
|
|
49
49
|
"magic-renamer-debug": "bin/magic-renamer-debug"
|
|
50
50
|
},
|
|
51
51
|
"license": "UNLICENSED",
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"tnp-helpers": "~
|
|
53
|
+
"tnp-helpers": "~18.0.2"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@angular-builders/custom-webpack": "~18.0.0",
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
"angular-material-css-vars": "7.0.0",
|
|
140
140
|
"angular-resize-event": "3.2.0",
|
|
141
141
|
"animate.css": "4.1.1",
|
|
142
|
-
"any-project-cli": "~
|
|
142
|
+
"any-project-cli": "~18.0.2",
|
|
143
143
|
"app-root-path": "3.1.0",
|
|
144
144
|
"axios": "1.7.3",
|
|
145
145
|
"background-worker-process": "~16.100.10",
|
|
@@ -151,10 +151,10 @@
|
|
|
151
151
|
"bun": "1.1.22",
|
|
152
152
|
"callsite-record": "4.1.5",
|
|
153
153
|
"chai": "4.5.0",
|
|
154
|
-
"chalk": "
|
|
154
|
+
"chalk": "2.3.2",
|
|
155
155
|
"check-node-version": "3.2.0",
|
|
156
156
|
"cheerio": "1.0.0",
|
|
157
|
-
"chokidar": "
|
|
157
|
+
"chokidar": "3.5.3",
|
|
158
158
|
"circular-json": "0.5.1",
|
|
159
159
|
"class-transformer": "0.5.1",
|
|
160
160
|
"class-validator": "0.14.1",
|
|
@@ -196,10 +196,10 @@
|
|
|
196
196
|
"file-type": "19.1.1",
|
|
197
197
|
"firedev": "^18",
|
|
198
198
|
"firedev-crud": "~16.444.15",
|
|
199
|
-
"firedev-crud-deamon": "~
|
|
199
|
+
"firedev-crud-deamon": "~18.0.2",
|
|
200
200
|
"firedev-ports": "~16.444.15",
|
|
201
201
|
"firedev-storage": "~16.444.11",
|
|
202
|
-
"firedev-type-sql": "~
|
|
202
|
+
"firedev-type-sql": "~18.0.1",
|
|
203
203
|
"firedev-typeorm": "~16.444.11",
|
|
204
204
|
"firedev-ui": "~16.444.1",
|
|
205
205
|
"fkill": "6.1.0",
|
|
@@ -219,11 +219,11 @@
|
|
|
219
219
|
"image-focus": "1.2.1",
|
|
220
220
|
"immer": "10.0.2",
|
|
221
221
|
"immutable": "4.3.7",
|
|
222
|
-
"incremental-compiler": "~
|
|
222
|
+
"incremental-compiler": "~18.0.2",
|
|
223
223
|
"inquirer": "7.3.3",
|
|
224
224
|
"inquirer-autocomplete-prompt": "1.3.0",
|
|
225
225
|
"is-elevated": "3.0.0",
|
|
226
|
-
"isomorphic-region-loader": "~
|
|
226
|
+
"isomorphic-region-loader": "~18.0.1",
|
|
227
227
|
"istanbul-instrumenter-loader": "3.0.1",
|
|
228
228
|
"jest": "29.7.0",
|
|
229
229
|
"jest-date-mock": "1.0.10",
|
|
@@ -234,19 +234,19 @@
|
|
|
234
234
|
"joi": "17.13.3",
|
|
235
235
|
"jscodeshift": "0.6.3",
|
|
236
236
|
"json-stringify-safe": "5.0.1",
|
|
237
|
-
"json10": "~
|
|
238
|
-
"json10-writer": "~
|
|
237
|
+
"json10": "~18.0.1",
|
|
238
|
+
"json10-writer": "~18.0.2",
|
|
239
239
|
"json5": "2.2.3",
|
|
240
240
|
"json5-writer": "0.2.0",
|
|
241
241
|
"jszip": "3.10.1",
|
|
242
|
-
"karma-cli": "0.1
|
|
242
|
+
"karma-cli": "1.0.1",
|
|
243
243
|
"lnk": "1.0.1",
|
|
244
244
|
"localforage": "1.10.0",
|
|
245
245
|
"lockfile": "1.0.4",
|
|
246
246
|
"lodash": "4.17.21",
|
|
247
|
-
"lodash-walk-object": "~
|
|
247
|
+
"lodash-walk-object": "~18.0.1",
|
|
248
248
|
"lowdb": "7.0.1",
|
|
249
|
-
"magic-renamer": "~
|
|
249
|
+
"magic-renamer": "~18.0.1",
|
|
250
250
|
"material-design-icons": "3.0.1",
|
|
251
251
|
"method-override": "2.3.10",
|
|
252
252
|
"minimist": "1.2.8",
|
|
@@ -258,9 +258,9 @@
|
|
|
258
258
|
"ng-lock": "18.0.1",
|
|
259
259
|
"ng-packagr": "18.1.0",
|
|
260
260
|
"ng-talkback": "~16.444.7",
|
|
261
|
-
"ng2-logger": "~
|
|
261
|
+
"ng2-logger": "~18.0.4",
|
|
262
262
|
"ng2-pdfjs-viewer": "18.0.0",
|
|
263
|
-
"ng2-rest": "~
|
|
263
|
+
"ng2-rest": "~18.0.1",
|
|
264
264
|
"ngx-ace-wrapper": "17.0.0",
|
|
265
265
|
"ngx-editor": "17.5.4",
|
|
266
266
|
"ngx-highlightjs": "12.0.0",
|
|
@@ -276,7 +276,7 @@
|
|
|
276
276
|
"node-cli-tester": "~16.444.7",
|
|
277
277
|
"node-localstorage": "2.1.6",
|
|
278
278
|
"node-notifier": "10.0.1",
|
|
279
|
-
"node-polyfill-webpack-plugin": "
|
|
279
|
+
"node-polyfill-webpack-plugin": "2.0.1",
|
|
280
280
|
"nodemon": "2.0.22",
|
|
281
281
|
"npm-get-dependents": "1.0.1",
|
|
282
282
|
"npm-run": "4.1.2",
|
|
@@ -322,11 +322,12 @@
|
|
|
322
322
|
"systeminformation": "3.45.7",
|
|
323
323
|
"task.js": "0.1.5",
|
|
324
324
|
"threads": "1.7.0",
|
|
325
|
+
"tnp": "~18.0.1",
|
|
325
326
|
"tnp-cli": "~16.444.7",
|
|
326
|
-
"tnp-config": "~
|
|
327
|
-
"tnp-core": "~18.0.
|
|
328
|
-
"tnp-db": "~
|
|
329
|
-
"tnp-models": "~18.0.
|
|
327
|
+
"tnp-config": "~18.0.4",
|
|
328
|
+
"tnp-core": "~18.0.26",
|
|
329
|
+
"tnp-db": "~18.0.2",
|
|
330
|
+
"tnp-models": "~18.0.3",
|
|
330
331
|
"ts-debug": "1.3.0",
|
|
331
332
|
"ts-json-schema-generator": "2.3.0-next.5",
|
|
332
333
|
"ts-loader": "2.3.1",
|
|
@@ -337,7 +338,7 @@
|
|
|
337
338
|
"typedoc": "0.26.5",
|
|
338
339
|
"typedoc-plugin-markdown": "4.2.3",
|
|
339
340
|
"typescript": "~5.5.4",
|
|
340
|
-
"typescript-class-helpers": "~
|
|
341
|
+
"typescript-class-helpers": "~18.0.3",
|
|
341
342
|
"typescript-formatter": "~7.2.2",
|
|
342
343
|
"underscore": "1.13.7",
|
|
343
344
|
"uuid": "10.0.0",
|
|
@@ -345,7 +346,7 @@
|
|
|
345
346
|
"video.js": "8.3.0",
|
|
346
347
|
"vpn-split": "~16.444.7",
|
|
347
348
|
"vscode": "1.1.37",
|
|
348
|
-
"wait-on": "
|
|
349
|
+
"wait-on": "7.0.1",
|
|
349
350
|
"watch": "1.0.2",
|
|
350
351
|
"webpack": "~5.80",
|
|
351
352
|
"webpack-dev-middleware": "~6.1.3",
|
|
@@ -354,18 +355,18 @@
|
|
|
354
355
|
"zone.js": "~0.13.0"
|
|
355
356
|
},
|
|
356
357
|
"private": false,
|
|
357
|
-
"lastBuildTagHash": "
|
|
358
|
+
"lastBuildTagHash": "ff7e746e718f13a101a3b9d5efca4e9cdc358387",
|
|
358
359
|
"main": "dist/app.electron.js"
|
|
359
360
|
},
|
|
360
361
|
"build": {
|
|
361
|
-
"number":
|
|
362
|
-
"date": "2024-
|
|
363
|
-
"hash": "
|
|
362
|
+
"number": 277,
|
|
363
|
+
"date": "2024-08-12T19:20:07.000Z",
|
|
364
|
+
"hash": "e4477535f5531b764199e7db36528b24be820319"
|
|
364
365
|
},
|
|
365
366
|
"currentProjectName": "magic-renamer",
|
|
366
367
|
"currentProjectGenericName": "magic-renamer",
|
|
367
368
|
"currentProjectType": "isomorphic-lib",
|
|
368
|
-
"currentFrameworkVersion": "18.0.
|
|
369
|
+
"currentFrameworkVersion": "18.0.1",
|
|
369
370
|
"isStandaloneProject": true,
|
|
370
371
|
"isSmartContainer": false,
|
|
371
372
|
"pathesTsconfig": "\"paths\": {\"magic-renamer\":[\"./src/lib\"],\"magic-renamer/*\":[\"./src/lib/*\"]},",
|
package/websql/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# MyLib
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "magic-renamer",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^13.2.0",
|
|
6
|
+
"@angular/core": "^13.2.0"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"tslib": "^2.3.0"
|
|
10
|
+
},
|
|
11
|
+
"module": "fesm2022/magic-renamer.mjs",
|
|
12
|
+
"typings": "index.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
"./package.json": {
|
|
15
|
+
"default": "./package.json"
|
|
16
|
+
},
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./index.d.ts",
|
|
19
|
+
"esm2022": "./esm2022/magic-renamer.mjs",
|
|
20
|
+
"esm": "./esm2022/magic-renamer.mjs",
|
|
21
|
+
"default": "./fesm2022/magic-renamer.mjs"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"sideEffects": false
|
|
25
|
+
}
|