@astromonacinema/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.
@@ -0,0 +1,20 @@
1
+ name: Publish
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 # Установка Node.js
14
+ with:
15
+ node-version: 22 # Установка Node.js
16
+ registry-url: https://registry.npmjs.org/ # Установка реестра npm
17
+
18
+ - run: npm publish # Публикация пакета
19
+ env:
20
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astromonacinema/core",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Core utilities for cinema microservices",
5
5
  "keywords": [],
6
6
  "type": "module",
@@ -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
  }