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

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/bin.js CHANGED
File without changes
package/package/gitignore CHANGED
@@ -1,8 +1,41 @@
1
+ ### Cache file
2
+ common/temp
3
+ *.tsbuildinfo
1
4
  .rpt2_cache/
2
- node_modules/
3
- jspm_packages/
4
- *.log
5
+
6
+ ### Build result
5
7
  dist/
8
+ lib/
6
9
  *.tgz
7
- lib
8
- test*
10
+ .test
11
+ build-*/
12
+
13
+ ### Package manager
14
+ node_modules
15
+ jspm_packages
16
+ .rush
17
+ package-deps.json
18
+ /package.json
19
+
20
+ ### logs
21
+ *.log
22
+
23
+ ### no need in mono repo
24
+ **/.editorconfig
25
+ **/.git*
26
+ !**/.github/
27
+ **/.prettier*
28
+ **/pnpm-lock.yaml
29
+ **/yarn.lock
30
+
31
+ !common/config/rush/pnpm-lock.yaml
32
+
33
+ ### old files
34
+ .idea
35
+
36
+ ### generated files
37
+ *.generated.*
38
+ c_cpp_properties.json
39
+ vcpkg_installed
40
+
41
+ ### temp project
package/package/npmignore CHANGED
@@ -5,10 +5,6 @@ node_modules
5
5
  jspm_modules
6
6
  config
7
7
 
8
- ### tests
9
- test
10
- tests
11
-
12
8
  ### hidden files
13
9
  .*
14
10
 
@@ -17,15 +13,16 @@ package-deps.json
17
13
  *.log
18
14
 
19
15
  ### build source
20
- src
21
- build-script.json
22
- Gulpfile.*
16
+ index.ts
17
+ /src
18
+ /build-script.json
19
+ /Gulpfile.*
23
20
  *.tsbuildinfo
24
21
 
25
22
  ### docs
26
- docs/*
27
- !docs/*.d.ts
23
+ /docs/*
24
+ !/docs/*.d.ts
28
25
 
29
26
  ### tests
30
- /tests/
31
- /test/
27
+ /tests
28
+ /test
@@ -1,3 +1,5 @@
1
1
  docs/
2
2
  /common/scripts/
3
3
  jspm_packages
4
+ lib/
5
+ pnpm-lock.yaml
package/package.json CHANGED
@@ -1,16 +1,15 @@
1
1
  {
2
- "name": "@build-script/single-dog-asset",
3
- "version": "1.0.16",
4
- "license": "MIT",
5
- "scripts": {
6
- "build": "",
7
- "clean": "",
8
- "prepack": ""
9
- },
10
- "dependencies": {
11
- "tslib": "^2.3.1"
12
- },
13
- "tslib": "^1.10.0",
14
- "ttypescript": "^1.5.10",
15
- "repository": "https://github.com/GongT/baobao"
16
- }
2
+ "name": "@build-script/single-dog-asset",
3
+ "version": "1.0.19",
4
+ "license": "MIT",
5
+ "dependencies": {
6
+ "tslib": "^2.4.0"
7
+ },
8
+ "tslib": "^1.10.0",
9
+ "ttypescript": "^1.5.10",
10
+ "repository": "https://github.com/GongT/baobao",
11
+ "scripts": {
12
+ "build": "",
13
+ "clean": ""
14
+ }
15
+ }