@flarehr/superhero-pba-support-admin 1.0.1 → 1.0.3
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/README.md +8 -8
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
# pba-support-admin
|
|
2
2
|
|
|
3
3
|
## CLI Commands
|
|
4
|
-
* `npm install`: Installs dependencies
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
- `npm start`: Run a development, HMR server
|
|
7
6
|
|
|
8
|
-
|
|
7
|
+
- `npm install`: Installs dependencies
|
|
9
8
|
|
|
10
|
-
|
|
9
|
+
- `npm run build`: Production-ready build
|
|
11
10
|
|
|
12
|
-
|
|
11
|
+
- `npm run lint`: Pass TypeScript files using ESLint
|
|
13
12
|
|
|
14
|
-
|
|
15
|
-
[`enzyme-adapter-preact-pure`](https://github.com/preactjs/enzyme-adapter-preact-pure) for
|
|
16
|
-
your tests
|
|
13
|
+
- `npm run lint`: Fix TypeScript files using ESLint
|
|
17
14
|
|
|
15
|
+
- `npm run test`: Run Jest and Enzyme with
|
|
16
|
+
[`enzyme-adapter-preact-pure`](https://github.com/preactjs/enzyme-adapter-preact-pure) for
|
|
17
|
+
your tests
|
|
18
18
|
|
|
19
19
|
For detailed explanation on how things work, checkout the [CLI Readme](https://github.com/developit/preact-cli/blob/master/README.md).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flarehr/superhero-pba-support-admin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/"
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"preact": "^10.3.1",
|
|
17
17
|
"preact-custom-element": "^4.2.1",
|
|
18
|
-
"preact-render-to-string": "^5.1.4",
|
|
19
18
|
"preact-router": "^3.2.1"
|
|
20
19
|
},
|
|
21
20
|
"devDependencies": {
|
|
@@ -24,6 +23,7 @@
|
|
|
24
23
|
"@types/preact-custom-element": "^4.0.1",
|
|
25
24
|
"@typescript-eslint/eslint-plugin": "^5.26.0",
|
|
26
25
|
"@typescript-eslint/parser": "^5.26.0",
|
|
26
|
+
"autoprefixer": "^10.4.7",
|
|
27
27
|
"css-loader": "^6.7.1",
|
|
28
28
|
"cssnano": "^5.1.11",
|
|
29
29
|
"enzyme": "^3.11.0",
|
|
@@ -36,8 +36,7 @@
|
|
|
36
36
|
"jest": "^27.2.5",
|
|
37
37
|
"jest-preset-preact": "^4.0.2",
|
|
38
38
|
"postcss": "^8.4.14",
|
|
39
|
-
"
|
|
40
|
-
"sirv-cli": "^1.0.0-next.3",
|
|
39
|
+
"postcss-loader": "^7.0.0",
|
|
41
40
|
"tailwindcss": "^3.1.3",
|
|
42
41
|
"ts-loader": "^9.3.0",
|
|
43
42
|
"typescript": "^4.5.2",
|