@vfcinema/core 1.0.0 → 1.0.1
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/.github/workflows/publish.yml +19 -0
- package/README.md +1 -1
- package/package.json +6 -4
- package/src/prettier.config.mjs +19 -19
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
name: Publish module on NPM
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
publish:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v4
|
|
13
|
+
- uses: actions/setup-node@v4
|
|
14
|
+
with:
|
|
15
|
+
node-version: 20
|
|
16
|
+
registry-url: 'https://registry.npmjs.org'
|
|
17
|
+
- run: npm publish
|
|
18
|
+
env:
|
|
19
|
+
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
|
package/README.md
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
# @vfcinema/core
|
|
1
|
+
# @vfcinema/core
|
|
2
2
|
## Core utilities and shared setup for VFCinema project.
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vfcinema/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Core utilities and shared setup for VFCinema project.",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"core",
|
|
7
|
+
"utils",
|
|
8
|
+
"module"
|
|
9
|
+
],
|
|
6
10
|
"publishConfig": {
|
|
7
11
|
"access": "public"
|
|
8
12
|
},
|
|
@@ -12,14 +16,12 @@
|
|
|
12
16
|
"name": "venvfour",
|
|
13
17
|
"email": "venvfour@gmail.com"
|
|
14
18
|
},
|
|
15
|
-
|
|
16
19
|
"peerDependencies": {
|
|
17
20
|
"prettier": "^3.7.4"
|
|
18
21
|
},
|
|
19
22
|
"dependencies": {
|
|
20
23
|
"@trivago/prettier-plugin-sort-imports": "^6.0.0"
|
|
21
24
|
},
|
|
22
|
-
|
|
23
25
|
"exports": {
|
|
24
26
|
"prettier": "./src/prettier.config.mjs"
|
|
25
27
|
}
|
package/src/prettier.config.mjs
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
/** @type {import("prettier").Config} */
|
|
2
|
-
export default {
|
|
3
|
-
trailingComma: "none",
|
|
4
|
-
tabWidth: 4,
|
|
5
|
-
useTabs: true,
|
|
6
|
-
semi: false,
|
|
7
|
-
singleQuote: true,
|
|
8
|
-
jsxSingleQuote: true,
|
|
9
|
-
arrowParens: "avoid",
|
|
10
|
-
importOrderSeparation: true,
|
|
11
|
-
importOrderSortSpecifiers: true,
|
|
12
|
-
importOrderCaseInsensitive: true,
|
|
13
|
-
importOrderParserPlugins: [
|
|
14
|
-
"classProperties",
|
|
15
|
-
"decorators-legacy",
|
|
16
|
-
"typescript"
|
|
17
|
-
],
|
|
18
|
-
importOrder: ["<THIRD_PARTY_MODULES>", "^@/(.*)$", "^../(.*)", "^./(.*)"],
|
|
19
|
-
plugins: ["@trivago/prettier-plugin-sort-imports"]
|
|
1
|
+
/** @type {import("prettier").Config} */
|
|
2
|
+
export default {
|
|
3
|
+
trailingComma: "none",
|
|
4
|
+
tabWidth: 4,
|
|
5
|
+
useTabs: true,
|
|
6
|
+
semi: false,
|
|
7
|
+
singleQuote: true,
|
|
8
|
+
jsxSingleQuote: true,
|
|
9
|
+
arrowParens: "avoid",
|
|
10
|
+
importOrderSeparation: true,
|
|
11
|
+
importOrderSortSpecifiers: true,
|
|
12
|
+
importOrderCaseInsensitive: true,
|
|
13
|
+
importOrderParserPlugins: [
|
|
14
|
+
"classProperties",
|
|
15
|
+
"decorators-legacy",
|
|
16
|
+
"typescript"
|
|
17
|
+
],
|
|
18
|
+
importOrder: ["<THIRD_PARTY_MODULES>", "^@/(.*)$", "^../(.*)", "^./(.*)"],
|
|
19
|
+
plugins: ["@trivago/prettier-plugin-sort-imports"]
|
|
20
20
|
}
|