@build-script/single-dog-asset 1.0.41 → 1.0.43

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/npmignore CHANGED
@@ -39,3 +39,6 @@ temp
39
39
 
40
40
  ### Examples
41
41
  /example
42
+
43
+ ### Private development declarations
44
+ src/**/*.d.ts
@@ -1,13 +1,14 @@
1
1
  ### Hidden Files
2
2
  .*
3
3
  !/.*
4
- !.gitignore
5
- !.npmignore
4
+ !.git*
5
+ !.npm*
6
+ !.pnpmfile.*
6
7
 
7
8
  ### Cache File
8
9
  *.tsbuildinfo
9
10
  .rpt2_cache/
10
- /.vscode/local-history
11
+ node-compile-cache/
11
12
 
12
13
  ### Temp Files
13
14
  *.lock
@@ -15,20 +16,37 @@ temp/
15
16
  tmp/
16
17
  *.temp
17
18
  *.tmp
19
+ /.vscode/local-history
20
+ .node-package-tools
21
+ *.generator.js
22
+ .package-tools/
23
+ .publisher/
18
24
 
19
25
  ### Build Result
20
- /dist
21
- /lib
26
+ dist/
27
+ lib/
22
28
  *.tgz
23
29
  /build-*
24
30
  tsdoc-metadata.json
25
31
 
32
+ ### Mistake
33
+ **/src/**/*.d.ts
34
+ !**/src/global.d.ts
35
+ !**/src/globals.d.ts
36
+ !**/src/export.d.ts
37
+ !**/src/exports.d.ts
38
+ !**/src/interface.d.ts
39
+ !**/src/types.d.ts
40
+ !**/src/typing.d.ts
41
+ !**/src/typings.d.ts
42
+ **/src/**/*.js
43
+ **/src/**/*.map
44
+
26
45
  ### Package Manager
27
46
  node_modules
28
47
  jspm_packages
29
48
  bower_components
30
49
  package-deps.json
31
- /package.json
32
50
 
33
51
  ### Log Files
34
52
  *.log
@@ -40,3 +58,6 @@ yarn-error.log*
40
58
  *.generated.*
41
59
  c_cpp_properties.json
42
60
  vcpkg_installed
61
+ _*.ts
62
+ tsconfig.everything.json
63
+ .nx
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "extends": "./tsconfig.legacy.json",
3
3
  "compilerOptions": {
4
- "module": "CommonJS"
5
- }
4
+ "module": "CommonJS",
5
+ },
6
6
  }
@@ -64,6 +64,6 @@
64
64
  "noFallthroughCasesInSwitch": true,
65
65
  "incremental": true,
66
66
  "jsxImportSource": "react",
67
- "jsx": "react-jsx"
68
- }
67
+ "jsx": "react-jsx",
68
+ },
69
69
  }
@@ -4,6 +4,6 @@
4
4
  "module": "ESNext",
5
5
  "moduleResolution": "Node10",
6
6
  "resolvePackageJsonExports": false,
7
- "resolvePackageJsonImports": false
8
- }
7
+ "resolvePackageJsonImports": false,
8
+ },
9
9
  }
@@ -2,12 +2,7 @@
2
2
  // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3
3
  // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4
4
  // List of extensions which should be recommended for users of this workspace.
5
- "recommendations": [
6
- "EditorConfig.EditorConfig",
7
- "esbenp.prettier-vscode",
8
- "xyz.local-history",
9
- "rbuckton.tsserver-live-reload"
10
- ],
5
+ "recommendations": ["EditorConfig.EditorConfig", "esbenp.prettier-vscode", "xyz.local-history", "rbuckton.tsserver-live-reload"],
11
6
  // List of extensions recommended by VS Code that should not be recommended for users of this workspace.
12
7
  "unwantedRecommendations": [
13
8
  "hookyqr.beautify",
package/package.json CHANGED
@@ -1,23 +1,20 @@
1
1
  {
2
2
  "name": "@build-script/single-dog-asset",
3
- "version": "1.0.41",
3
+ "version": "1.0.43",
4
4
  "devDependencies": {
5
- "prettier": "^3.6.2",
6
- "@build-script/single-dog-asset": "latest"
5
+ "prettier": "^3.7.4"
7
6
  },
8
7
  "exports": {
9
8
  "./package.json": "./package.json"
10
9
  },
11
10
  "type": "module",
12
11
  "sideEffects": false,
13
- "license": "MIT",
14
- "author": "GongT <admin@gongt.me>",
15
- "repository": "https://github.com/GongT/baobao",
16
12
  "scripts": {
17
13
  "build": "",
18
14
  "clean": "",
19
15
  "test": "",
20
16
  "watch": "",
17
+ "prepublishHook": "internal-prepublish-hook",
21
18
  "lint": "internal-lint"
22
19
  }
23
20
  }
package/src/tsconfig.json DELETED
@@ -1,3 +0,0 @@
1
- {
2
- "extends": "@build-script/single-dog-asset/package/tsconfig.json"
3
- }