@gadmin2n/schematics 0.0.106 → 0.0.107

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.
@@ -0,0 +1,53 @@
1
+ # compiled output
2
+ bin/
3
+ dist/
4
+ node_modules/
5
+ generated/
6
+ build/
7
+ server/prisma/dbml
8
+ server/prisma/schema.prisma
9
+ upload/
10
+ # Logs
11
+ logs/
12
+ *.log
13
+ npm-debug.log*
14
+ pnpm-debug.log*
15
+ yarn-debug.log*
16
+ yarn-error.log*
17
+ lerna-debug.log*
18
+ .env.local
19
+
20
+ # OS
21
+ .DS_Store
22
+
23
+ # Tests
24
+ coverage
25
+ .nyc_output
26
+
27
+ # IDEs and editors
28
+ .idea
29
+ .project
30
+ .classpath
31
+ .c9/
32
+ *.launch
33
+ .settings/
34
+ *.sublime-workspace
35
+
36
+ # IDE - VSCode
37
+ .vscode/*
38
+ !.vscode/settings.json
39
+ !.vscode/tasks.json
40
+ !.vscode/launch.json
41
+ !.vscode/extensions.json
42
+
43
+ .yalc/
44
+
45
+ nginx-external-page/
46
+ settings.local.json
47
+
48
+ .agent/
49
+ .claude-internal/
50
+ .claude
51
+ docs/
52
+ .frontend-slides/
53
+ .agent
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gadmin2n/schematics",
3
- "version": "0.0.106",
3
+ "version": "0.0.107",
4
4
  "description": "Gadmin - modern, fast, powerful node.js web framework (@schematics)",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -10,6 +10,7 @@
10
10
  "access": "public"
11
11
  },
12
12
  "scripts": {
13
+ "prebuild": "find src/lib -path '*/files*/.gitignore' -exec sh -c 'mv \"$1\" \"$(dirname \"$1\")/gitignore\"' _ {} \\;",
13
14
  "postbuild": "npm run copy:collection && npm run copy:lib && npm run scrub:dist",
14
15
  "build": "rm -rf dist && tsc --project tsconfig.lib.json",
15
16
  "clean": "gulp clean:src",