@build-script/single-dog-asset 1.0.34 → 1.0.36

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
@@ -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,5 +1,5 @@
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": "./",
package/package.json CHANGED
@@ -1,15 +1,27 @@
1
1
  {
2
2
  "name": "@build-script/single-dog-asset",
3
- "version": "1.0.34",
4
- "license": "MIT",
5
- "repository": "https://github.com/GongT/baobao",
3
+ "version": "1.0.36",
6
4
  "devDependencies": {
7
- "prettier": "^3.3.3"
5
+ "prettier": "^3.6.2"
6
+ },
7
+ "exports": {
8
+ "./package.json": "./package.json"
8
9
  },
10
+ "type": "module",
11
+ "publishConfig": {
12
+ "packCommand": [
13
+ "publisher",
14
+ "pack"
15
+ ]
16
+ },
17
+ "license": "MIT",
18
+ "author": "GongT <admin@gongt.me>",
19
+ "repository": "https://github.com/GongT/baobao",
9
20
  "scripts": {
10
- "build": "true",
11
- "clean": "true",
12
- "test": "true",
13
- "watch": "true"
21
+ "build": "",
22
+ "clean": "",
23
+ "test": "",
24
+ "watch": "",
25
+ "lint": "internal-lint"
14
26
  }
15
27
  }