@build-script/single-dog-asset 1.0.19 → 1.0.20

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/package/gitignore CHANGED
@@ -1,41 +1,53 @@
1
- ### Cache file
1
+ ### Hidden Files
2
+ .*
3
+ !/.*
4
+
5
+ ### Git
6
+ !*.gitignore
7
+
8
+ ### Cache File
2
9
  common/temp
10
+ common/deploy
3
11
  *.tsbuildinfo
4
12
  .rpt2_cache/
5
13
 
6
- ### Build result
14
+ ### Temp Files
15
+ *.lock
16
+ .lock
17
+ temp/
18
+
19
+ ### Build Result
7
20
  dist/
8
21
  lib/
9
22
  *.tgz
10
23
  .test
11
24
  build-*/
12
25
 
13
- ### Package manager
26
+ ### Package Manager
14
27
  node_modules
15
28
  jspm_packages
16
- .rush
29
+ bower_components
17
30
  package-deps.json
18
31
  /package.json
32
+ !common/config/rush/.npmrc
33
+ !.npmignore
19
34
 
20
- ### logs
35
+ ### Log Files
21
36
  *.log
37
+ npm-debug.log*
38
+ yarn-debug.log*
39
+ yarn-error.log*
22
40
 
23
- ### no need in mono repo
41
+ ### Monorepo Local Files
24
42
  **/.editorconfig
25
43
  **/.git*
26
- !**/.github/
27
44
  **/.prettier*
28
45
  **/pnpm-lock.yaml
29
46
  **/yarn.lock
30
47
 
31
48
  !common/config/rush/pnpm-lock.yaml
32
49
 
33
- ### old files
34
- .idea
35
-
36
- ### generated files
50
+ ### Generated Files
37
51
  *.generated.*
38
52
  c_cpp_properties.json
39
53
  vcpkg_installed
40
-
41
- ### temp project
package/package/npmignore CHANGED
@@ -5,24 +5,28 @@ node_modules
5
5
  jspm_modules
6
6
  config
7
7
 
8
- ### hidden files
8
+ ### Hidden Files
9
9
  .*
10
+ _*
10
11
 
11
- ### temp files
12
+ ### Temp Files
12
13
  package-deps.json
13
14
  *.log
15
+ temp
14
16
 
15
- ### build source
17
+ ### Build Source
16
18
  index.ts
17
19
  /src
18
20
  /build-script.json
19
21
  /Gulpfile.*
20
22
  *.tsbuildinfo
21
23
 
22
- ### docs
23
- /docs/*
24
- !/docs/*.d.ts
24
+ ### Api Extractor
25
+ /etc
25
26
 
26
- ### tests
27
+ ### Tests
27
28
  /tests
28
29
  /test
30
+
31
+ ### Temp Files
32
+ /lib/dts
@@ -23,7 +23,15 @@
23
23
  "inlineSourceMap": false,
24
24
  "inlineSources": false,
25
25
  "keyofStringsOnly": false,
26
- "lib": ["ESNext", "ESNext.Array", "ESNext.AsyncIterable", "ESNext.Symbol"],
26
+ "lib": [
27
+ "ESNext",
28
+ "ESNext.Array",
29
+ "ESNext.AsyncIterable",
30
+ "ESNext.BigInt",
31
+ "ESNext.Promise",
32
+ "ESNext.String",
33
+ "ESNext.WeakRef"
34
+ ],
27
35
  "noEmitOnError": false,
28
36
  "noImplicitThis": true,
29
37
  "noImplicitAny": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@build-script/single-dog-asset",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "license": "MIT",
5
5
  "dependencies": {
6
6
  "tslib": "^2.4.0"