@alikuxac/tsconfig 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/renovate.json +4 -4
- package/.github/workflows/release.yml +32 -32
- package/.prettierignore +8 -8
- package/package.json +3 -2
package/.github/renovate.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
3
|
-
"extends": ["github>alikuxac/renovate"]
|
|
4
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
3
|
+
"extends": ["github>alikuxac/renovate"]
|
|
4
|
+
}
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
name: Release
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches: [ master ]
|
|
6
|
-
|
|
7
|
-
jobs:
|
|
8
|
-
release:
|
|
9
|
-
name: Release
|
|
10
|
-
runs-on: ubuntu-latest
|
|
11
|
-
permissions:
|
|
12
|
-
contents: 'write'
|
|
13
|
-
pull-requests: 'write'
|
|
14
|
-
steps:
|
|
15
|
-
- name: Checkout
|
|
16
|
-
uses: actions/checkout@v3
|
|
17
|
-
|
|
18
|
-
- name: Setup Volta
|
|
19
|
-
uses: volta-cli/action@v4
|
|
20
|
-
|
|
21
|
-
- name: Install dependencies
|
|
22
|
-
run: yarn install --immutable
|
|
23
|
-
|
|
24
|
-
- name: Create Release Pull Request or Publish to npm
|
|
25
|
-
uses: changesets/action@v1
|
|
26
|
-
with:
|
|
27
|
-
publish: yarn publish
|
|
28
|
-
version: yarn version
|
|
29
|
-
commit: 'chore: release'
|
|
30
|
-
title: 'chore: release'
|
|
31
|
-
env:
|
|
32
|
-
GITHUB_TOKEN: ${{ secrets.TOKEN }}
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ master ]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
release:
|
|
9
|
+
name: Release
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
permissions:
|
|
12
|
+
contents: 'write'
|
|
13
|
+
pull-requests: 'write'
|
|
14
|
+
steps:
|
|
15
|
+
- name: Checkout
|
|
16
|
+
uses: actions/checkout@v3
|
|
17
|
+
|
|
18
|
+
- name: Setup Volta
|
|
19
|
+
uses: volta-cli/action@v4
|
|
20
|
+
|
|
21
|
+
- name: Install dependencies
|
|
22
|
+
run: yarn install --immutable
|
|
23
|
+
|
|
24
|
+
- name: Create Release Pull Request or Publish to npm
|
|
25
|
+
uses: changesets/action@v1
|
|
26
|
+
with:
|
|
27
|
+
publish: yarn publish
|
|
28
|
+
version: yarn version
|
|
29
|
+
commit: 'chore: release'
|
|
30
|
+
title: 'chore: release'
|
|
31
|
+
env:
|
|
32
|
+
GITHUB_TOKEN: ${{ secrets.TOKEN }}
|
|
33
33
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/.prettierignore
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# Yarn
|
|
2
|
-
|
|
3
|
-
**/node_modules/
|
|
4
|
-
/.yarn/
|
|
5
|
-
/.pnp.*
|
|
6
|
-
|
|
7
|
-
# Artifacts
|
|
8
|
-
|
|
1
|
+
# Yarn
|
|
2
|
+
|
|
3
|
+
**/node_modules/
|
|
4
|
+
/.yarn/
|
|
5
|
+
/.pnp.*
|
|
6
|
+
|
|
7
|
+
# Artifacts
|
|
8
|
+
|
|
9
9
|
**/*.tsbuildinfo
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alikuxac/tsconfig",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Alikuxac tsconfig file",
|
|
5
5
|
"main": "./src/tsconfig.json",
|
|
6
6
|
"tsconfig": "./src/tsconfig.json",
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"author": "Alikuxac <admin@alikuxac.xyz>",
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"
|
|
24
|
+
"@changesets/cli": "^2.26.0",
|
|
25
|
+
"prettier": "^2.8.4",
|
|
25
26
|
"typescript": "^4.9.5"
|
|
26
27
|
},
|
|
27
28
|
"engines": {
|