@build-script/single-dog-asset 1.0.33 → 1.0.35

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.
@@ -3,54 +3,54 @@
3
3
  "vcs": {
4
4
  "enabled": false,
5
5
  "clientKind": "git",
6
- "useIgnoreFile": true
6
+ "useIgnoreFile": true,
7
7
  },
8
8
  "files": {
9
9
  "ignoreUnknown": true,
10
- "ignore": ["local-history", ".nx", "lib", "node_modules"]
10
+ "ignore": ["local-history", ".nx", "lib", "node_modules"],
11
11
  },
12
12
  "formatter": {
13
13
  "enabled": true,
14
14
  "indentStyle": "tab",
15
15
  "formatWithErrors": true,
16
16
  "lineEnding": "lf",
17
- "lineWidth": 120
17
+ "lineWidth": 120,
18
18
  },
19
19
  "organizeImports": {
20
- "enabled": false
20
+ "enabled": false,
21
21
  },
22
22
  "linter": {
23
23
  "enabled": false,
24
24
  "rules": {
25
- "recommended": true
26
- }
25
+ "recommended": true,
26
+ },
27
27
  },
28
28
  "javascript": {
29
29
  "formatter": {
30
30
  "quoteStyle": "double",
31
- "trailingCommas": "es5"
32
- }
31
+ "trailingCommas": "es5",
32
+ },
33
33
  },
34
34
  "json": {
35
35
  "parser": {
36
- "allowTrailingCommas": true
36
+ "allowTrailingCommas": true,
37
37
  },
38
38
  "formatter": {
39
- "trailingCommas": "none"
40
- }
39
+ "trailingCommas": "none",
40
+ },
41
41
  },
42
42
  "overrides": [
43
43
  {
44
44
  "include": ["*.ts"],
45
- "organizeImports": { "enabled": false }
45
+ "organizeImports": { "enabled": false },
46
46
  },
47
47
  {
48
48
  "include": ["tsconfig.json", "tsconfig.*.json", ".vscode/*.json"],
49
49
  "json": {
50
50
  "formatter": {
51
- "trailingCommas": "all"
52
- }
53
- }
54
- }
55
- ]
51
+ "trailingCommas": "all",
52
+ },
53
+ },
54
+ },
55
+ ],
56
56
  }
package/package/npmignore CHANGED
@@ -4,6 +4,10 @@ yarn.lock
4
4
  node_modules
5
5
  jspm_modules
6
6
  config
7
+ .npm*
8
+
9
+ ### Development Entry Points
10
+ loader/*.devel.js
7
11
 
8
12
  ### Hidden Files
9
13
  .*
@@ -32,8 +36,9 @@ lib/**/test.*
32
36
 
33
37
  ### Temp Files
34
38
  *.jsc
35
- *.realtime-compile.cjs
36
- *.realtime-compile.cjs.map
39
+ *.realtime-compile.*
40
+ *.realtime-compile.*.map
41
+ lib/chunk-*
37
42
 
38
43
  ### Examples
39
44
  /example
@@ -5,6 +5,6 @@
5
5
  "dependencies": {
6
6
  "@build-script/rush-tools": "latest",
7
7
  "@build-script/single-dog-asset": "latest",
8
- "@build-script/node-package-tools": "latest"
8
+ "@build-script/package-tools": "latest"
9
9
  }
10
10
  }
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import 'source-map-support/register.js'
3
+ import 'source-map-support/register.js';
4
4
  import './lib/src.js';
@@ -1,10 +1,10 @@
1
1
  {
2
- "extends": "node_modules/@build-script/single-dog-asset/package/tsconfig.json",
2
+ "extends": "../node_modules/@build-script/single-dog-asset/package/tsconfig.json",
3
3
  "compilerOptions": {
4
4
  "outDir": "../lib",
5
5
  "rootDir": "./",
6
6
  "typeRoots": ["./node_modules/@types", "./node_modules"],
7
7
  // "types": ["node"],
8
- "lib": ["DOM", "ESNext"],
8
+ "lib": ["DOM", "ESNext"]
9
9
  }
10
10
  }
@@ -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
  }
@@ -35,9 +35,7 @@
35
35
  "inlineSources": false,
36
36
  "isolatedModules": false,
37
37
  "keyofStringsOnly": false,
38
- "lib": [
39
- "ESNext",
40
- ],
38
+ "lib": ["ESNext"],
41
39
  "noImplicitThis": true,
42
40
  "noImplicitAny": true,
43
41
  "noImplicitOverride": true,
@@ -50,10 +48,7 @@
50
48
  "useUnknownInCatchVariables": true,
51
49
  "preserveConstEnums": true,
52
50
  "pretty": true,
53
- "typeRoots": [
54
- "../node_modules/@types",
55
- "../node_modules"
56
- ],
51
+ "typeRoots": ["../node_modules/@types", "../node_modules"],
57
52
  "types": [],
58
53
  "removeComments": false,
59
54
  "sourceMap": true,
@@ -69,6 +64,6 @@
69
64
  "noFallthroughCasesInSwitch": true,
70
65
  "incremental": true,
71
66
  "jsxImportSource": "react",
72
- "jsx": "react-jsx"
73
- }
67
+ "jsx": "react-jsx",
68
+ },
74
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
  }
@@ -6,7 +6,7 @@
6
6
  "EditorConfig.EditorConfig",
7
7
  "esbenp.prettier-vscode",
8
8
  "xyz.local-history",
9
- "rbuckton.tsserver-live-reload",
9
+ "rbuckton.tsserver-live-reload"
10
10
  ],
11
11
  // List of extensions recommended by VS Code that should not be recommended for users of this workspace.
12
12
  "unwantedRecommendations": [
@@ -14,6 +14,6 @@
14
14
  "ms-mssql.mssql",
15
15
  "firefox-devtools.vscode-firefox-debug",
16
16
  "ms-azuretools.vscode-docker",
17
- "christian-kohler.npm-intellisense",
17
+ "christian-kohler.npm-intellisense"
18
18
  ]
19
19
  }
@@ -10,7 +10,7 @@
10
10
  "**/*.api.json": true,
11
11
  "**/*.api.md": true,
12
12
  "**/package-public.d.ts": true,
13
- "pnpm-lock.yaml": true,
13
+ "pnpm-lock.yaml": true
14
14
  },
15
15
  "prettier.prettierPath": "common/autoinstallers/rush-prettier/node_modules/prettier",
16
16
  "prettier.requireConfig": true,
package/package.json CHANGED
@@ -1,15 +1,20 @@
1
1
  {
2
2
  "name": "@build-script/single-dog-asset",
3
- "version": "1.0.33",
4
- "license": "MIT",
5
- "repository": "https://github.com/GongT/baobao",
3
+ "version": "1.0.35",
6
4
  "devDependencies": {
7
- "prettier": "^3.3.3"
5
+ "prettier": "^3.6.2",
6
+ "@internal/local-rig": "^1.0.1"
8
7
  },
8
+ "exports": {
9
+ "./package.json": "./package.json"
10
+ },
11
+ "type": "module",
9
12
  "scripts": {
10
- "build": "true",
11
- "clean": "true",
12
- "test": "true",
13
- "watch": "true"
13
+ "build": "",
14
+ "clean": "",
15
+ "test": "",
16
+ "watch": "",
17
+ "prepublishHook": "internal-prepublish-hook",
18
+ "lint": "internal-lint"
14
19
  }
15
20
  }