@xarc/app-dev 13.0.0-beta.0 → 13.0.0

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.
Files changed (1) hide show
  1. package/package.json +17 -18
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xarc/app-dev",
3
- "version": "13.0.0-beta.0",
3
+ "version": "13.0.0",
4
4
  "description": "Electrode X application development support",
5
5
  "main": "lib/index.js",
6
6
  "homepage": "http://www.electrode.io",
@@ -12,17 +12,6 @@
12
12
  "url": "https://github.com/electrode-io/electrode/issues"
13
13
  },
14
14
  "license": "Apache-2.0",
15
- "scripts": {
16
- "compile": "tsc",
17
- "build": "xrun -s compile user/moveDist",
18
- "lint": "xrun xarc/lint",
19
- "test": "xrun xarc/test-only",
20
- "coverage": "xrun xarc/test-cov",
21
- "check": "xrun xarc/check",
22
- "format": "prettier --write --print-width 100 *.{js,jsx} `find . -type d -d 1 -exec echo '{}/**/*.{js,jsx}' \\; | egrep -v '(/node_modules/|/dist/|/coverage/)'`",
23
- "prepublishOnly": "xrun [[build, docs], xarc/check]",
24
- "docs": "xrun xarc/docs"
25
- },
26
15
  "bin": {
27
16
  "xrun": "bin/xrun.js"
28
17
  },
@@ -39,7 +28,7 @@
39
28
  "Joel Chen <xchen@walmartlabs.com>"
40
29
  ],
41
30
  "peerDependencies": {
42
- "@xarc/app": "^12.0.0"
31
+ "@xarc/app": "^13.0.0"
43
32
  },
44
33
  "dependencies": {
45
34
  "@babel/cli": "^7.17.10",
@@ -55,10 +44,10 @@
55
44
  "@babel/preset-typescript": "^7.17.12",
56
45
  "@babel/register": "^7.17.7",
57
46
  "@jchip/redbird": "^1.3.0",
58
- "@xarc/dev-base": "^2.0.0-beta.0",
47
+ "@xarc/dev-base": "^1.0.0",
59
48
  "@xarc/run": "^1.0.5",
60
- "@xarc/subapp": "^1.0.0-beta.0",
61
- "@xarc/webpack": "^13.0.0-beta.0",
49
+ "@xarc/subapp": "^1.0.0",
50
+ "@xarc/webpack": "^13.0.0",
62
51
  "ansi-to-html": "^0.7.2",
63
52
  "babel-plugin-lodash": "^3.3.4",
64
53
  "babel-plugin-minify-dead-code-elimination": "^0.5.2",
@@ -114,7 +103,7 @@
114
103
  "@types/webpack": "5.28.0",
115
104
  "@typescript-eslint/eslint-plugin": "^5.0.0",
116
105
  "@typescript-eslint/parser": "^5.0.0",
117
- "@xarc/app": "^12.0.0",
106
+ "@xarc/app": "^13.0.0",
118
107
  "@xarc/module-dev": "^4.1.0",
119
108
  "@xarc/run": "^1.1.1",
120
109
  "chai": "^4.3.6",
@@ -193,5 +182,15 @@
193
182
  "@xarc/module-dev/config/test/setup.js"
194
183
  ],
195
184
  "recursive": true
185
+ },
186
+ "scripts": {
187
+ "compile": "tsc",
188
+ "build": "xrun -s compile user/moveDist",
189
+ "lint": "xrun xarc/lint",
190
+ "test": "xrun xarc/test-only",
191
+ "coverage": "xrun xarc/test-cov",
192
+ "check": "xrun xarc/check",
193
+ "format": "prettier --write --print-width 100 *.{js,jsx} `find . -type d -d 1 -exec echo '{}/**/*.{js,jsx}' \\; | egrep -v '(/node_modules/|/dist/|/coverage/)'`",
194
+ "docs": "xrun xarc/docs"
196
195
  }
197
- }
196
+ }