Skip to content

Commit

Permalink
feat: accept pr suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasaarcoverde committed Nov 29, 2023
1 parent 069ee06 commit e2fb857
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 57 deletions.
26 changes: 0 additions & 26 deletions jest.config.js

This file was deleted.

12 changes: 4 additions & 8 deletions packages/stylelint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@vtex/shoreline-stylelint",
"version": "0.0.0",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public",
Expand All @@ -14,12 +14,12 @@
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/esm/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": ">=16"
"node": ">=18"
},
"scripts": {
"prebuild": "rm -rf dist",
Expand All @@ -36,9 +36,5 @@
},
"peerDependencies": {
"stylelint": "^14.15.0 || ^15.0.0"
},
"devDependencies": {
"tsup": "7.2.0"
},
"dependencies": {}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { test, expect } from 'vitest'
import { test, expect } from '@vtex/shoreline-test-utils'

const plugin = require('.')

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { test, expect } from 'vitest'
import { test, expect } from '@vtex/shoreline-test-utils'

const plugin = require('.')

Expand Down
1 change: 0 additions & 1 deletion packages/stylelint/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ export default defineConfig({
sourcemap: true,
clean: true,
dts: true,
legacyOutput: true,
})
56 changes: 36 additions & 20 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e2fb857

Please sign in to comment.