@genesislcap/blank-app-seed 1.5.4 → 1.5.5

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed-config",
3
3
  "description": "Genesis Blank App Seed Configuration",
4
- "version": "1.5.4",
4
+ "version": "1.5.5",
5
5
  "license": "Apache-2.0",
6
6
  "genxSeedConfig": {
7
7
  "exclude": [
@@ -26,7 +26,10 @@ jobs:
26
26
  npm run release
27
27
 
28
28
  - name: Generate .npmignore
29
- run: cp .gitignore .npmignore && echo '\n!.gitignore' >> .npmignore
29
+ run: cp .gitignore .npmignore && echo '!.gitignore' >> .npmignore && cat .npmignore
30
+
31
+ - name: NPM pack dry-run
32
+ run: npm pack -dry
30
33
 
31
34
  - name: Publish
32
35
  uses: JS-DevTools/npm-publish@v3
package/.gitignore ADDED
@@ -0,0 +1,110 @@
1
+ # Root and server specific
2
+
3
+ # Logs
4
+ logs
5
+ *.log
6
+
7
+ # Runtime data
8
+ pids
9
+ *.pid
10
+ *.seed
11
+ *.pid.lock
12
+
13
+ # Output of 'npm pack'
14
+ *.tgz
15
+
16
+ # dotenv environment variables file
17
+ .env
18
+ .env.*
19
+
20
+ # Editor directories and files
21
+ .idea
22
+ .vscode
23
+ !.vscode/settings.json
24
+ *.suo
25
+ *.ntvs*
26
+ *.njsproj
27
+ *.sln
28
+ *.sw?
29
+ .DS_Store
30
+
31
+ # Development
32
+ target/
33
+ .settings/
34
+ .project
35
+ .classpath
36
+ *.ignore
37
+ *.iml
38
+ *~
39
+ .gradle
40
+ **/build/
41
+ !src/**/build/
42
+
43
+ # Ignore Gradle GUI config
44
+ gradle-app.setting
45
+
46
+ # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
47
+ !gradle-wrapper.jar
48
+
49
+ # Cache of project
50
+ .gradletasknamecache
51
+ server/jvm/server/position-deploy/gradle.properties
52
+
53
+ # Dependency directories
54
+ node_modules
55
+
56
+ # Intellij plugin folder
57
+ .genesis-home
58
+
59
+ build-cache
60
+
61
+ # Server
62
+ server/jvm/{{appName}}-deploy/gradle.properties
63
+
64
+ # Client
65
+
66
+ # Logs
67
+ npm-debug.log*
68
+ yarn-debug.log*
69
+ yarn-error.log*
70
+
71
+ # Output
72
+ client/dist/
73
+
74
+ # Directory for instrumented libs generated by jscoverage/JSCover
75
+ client/lib-cov
76
+
77
+ # Coverage directory used by tools like istanbul
78
+ client/coverage
79
+
80
+ # Coverage files
81
+ coverage.lcov
82
+
83
+ # nyc test coverage
84
+ .nyc_output
85
+
86
+ # Optional npm cache directory
87
+ .npm
88
+
89
+ # Optional eslint cache
90
+ .eslintcache
91
+
92
+ # Optional REPL history
93
+ .node_repl_history
94
+
95
+ # lerna backups
96
+ package.json.lerna_backup
97
+
98
+ # custom elements metadata
99
+ custom-elements.json
100
+
101
+ # TypeScript incremental compilation cache
102
+ *.tsbuildinfo
103
+ .rollup.cache
104
+
105
+ # User files that may contain sensitive tokens etc.
106
+ .npmrc
107
+
108
+ # Gradle tasks
109
+ .bootstrapDone
110
+ .tests.executed
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.5.5](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v1.5.4...v1.5.5) (2024-02-01)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * ensure .gitignore is included in NPM artifact [PSD-47](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/47) (#124) c9e2d78
9
+
3
10
  ## [1.5.4](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v1.5.3...v1.5.4) (2024-02-01)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed",
3
3
  "description": "Genesis Blank App Seed",
4
- "version": "1.5.4",
4
+ "version": "1.5.5",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"