@loren-cinema/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
+
8
+ permissions:
9
+ contents: read
10
+ id-token: write
11
+
12
+ jobs:
13
+ publish:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v6
17
+ - uses: actions/setup-node@v6
18
+ with:
19
+ node-version: 24
20
+ registry-url: "https://registry.npmjs.org"
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": "@loren-cinema/core",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Core utilities and shared setup",
5
5
  "type": "commonjs",
6
6
  "publishConfig": {
@@ -8,8 +8,8 @@
8
8
  },
9
9
  "keywords": [],
10
10
  "author": {
11
- "name": "jayantpathariya",
12
- "email": "jayantmehra02@gmail.com"
11
+ "name": "lorem234",
12
+ "email": "lorenwick002@gmail.com"
13
13
  },
14
14
  "peerDependencies": {
15
15
  "prettier": "^3.0.0"
@@ -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
- importOrderParserPlugin: [
14
- "classProperties",
15
- "decorator-legacy",
16
- "typescript",
17
- ],
18
- importOrder: ["<THIRD_PARTY_MODULE>", "^@/(.*)$", "^../(.*)", "^./(.*)"],
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: false,
7
+ singleQuote: true,
8
+ jsxSingleQuote: true,
9
+ arrowParens: "avoid",
10
+ importOrderSeparation: true,
11
+ importOrderSortSpecifiers: true,
12
+ importOrderCaseInsensitive: true,
13
+ importOrderParserPlugin: [
14
+ "classProperties",
15
+ "decorator-legacy",
16
+ "typescript",
17
+ ],
18
+ importOrder: ["<THIRD_PARTY_MODULE>", "^@/(.*)$", "^../(.*)", "^./(.*)"],
19
+ plugins: ["@trivago/prettier-plugin-sort-imports"],
20
+ };