ultracite 3.2.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/.gitattributes ADDED
@@ -0,0 +1,2 @@
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
@@ -0,0 +1 @@
1
+ github: [haydenbleasel]
@@ -0,0 +1,45 @@
1
+ # Name of our action
2
+ name: Release
3
+
4
+ # The event that will trigger the action
5
+ on:
6
+ push:
7
+ branches: [main]
8
+
9
+ # what the action will do
10
+ jobs:
11
+ release:
12
+ # The operating system it will run on
13
+ runs-on: ubuntu-latest
14
+ # This check needs to be in place to prevent a publish loop with auto and github actions
15
+ if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
16
+ # The list of steps that the action will go through
17
+ steps:
18
+ - uses: actions/checkout@v3
19
+ - uses: pnpm/action-setup@v2
20
+ with:
21
+ version: 8
22
+
23
+ - name: Prepare repository
24
+ run: git fetch --unshallow --tags
25
+
26
+ - name: Use Node.js
27
+ uses: actions/setup-node@v3
28
+ with:
29
+ node-version: 18
30
+
31
+ - name: Cache node modules
32
+ uses: actions/cache@v3
33
+ with:
34
+ path: node_modules
35
+ key: pnpm-deps-${{ hashFiles('pnpm-lock.yaml') }}
36
+ restore-keys: |
37
+ pnpm-deps-${{ hashFiles('pnpm-lock.yaml') }}
38
+
39
+ - name: Create Release
40
+ env:
41
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
43
+ run: |
44
+ pnpm install
45
+ npx auto shipit
@@ -0,0 +1,19 @@
1
+ {
2
+ "typescript.tsdk": "node_modules/typescript/lib",
3
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
4
+ "editor.formatOnSave": true,
5
+ "editor.formatOnPaste": true,
6
+ "emmet.showExpandedAbbreviation": "never",
7
+ "editor.codeActionsOnSave": {
8
+ "source.fixAll.esbenp.prettier-vscode": "explicit",
9
+ "source.fixAll.eslint": "explicit",
10
+ "source.fixAll.stylelint": "explicit"
11
+ },
12
+ "[typescriptreact]": {
13
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
14
+ },
15
+ "eslint.experimental.useFlatConfig": true,
16
+ "eslint.options": {
17
+ "overrideConfigFile": "eslint.config.mjs"
18
+ }
19
+ }