@neo-tickets/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,23 @@
1
+ name: Publish
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ tags:
8
+ - "v*.*.*"
9
+
10
+ jobs:
11
+ publish:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: Set up Node.js
16
+ uses: actions/setup-node@v4
17
+ with:
18
+ node-version: 20
19
+ registry-url: "https://registry.npmjs.org"
20
+ - name: Publish package
21
+ run: npm publish --access public
22
+ env:
23
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neo-tickets/core",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Core utilities for the tickets service",
5
5
  "author": "Neo",
6
6
  "license": "ISC",
@@ -1,20 +1,20 @@
1
- /** @type {import("prettier").Config} */
2
- export default {
3
- trailingComma: "none",
4
- tabWidth: 4,
5
- useTabs: true,
6
- semi: true,
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
- };
1
+ /** @type {import("prettier").Config} */
2
+ export default {
3
+ trailingComma: "none",
4
+ tabWidth: 4,
5
+ useTabs: true,
6
+ semi: true,
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
+ };