Skip to content

Commit 180d10a

Browse files
committed
chore: release pkg
1 parent ce97b60 commit 180d10a

File tree

6 files changed

+79
-64
lines changed

6 files changed

+79
-64
lines changed

.npmrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
registry=http://registry.npmmirror.com/
2-
shamefully-hoist=true
2+
shamefully-hoist=true
3+
git-checks=false

apps/nuxt-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"devDependencies": {
1313
"@types/node": "^18.16.2",
1414
"autoprefixer": "^10.4.14",
15-
"nuxt": "^3.4.2",
15+
"nuxt": "^3.4.3",
1616
"postcss": "^8.4.23",
1717
"tailwindcss": "^3.3.2",
1818
"tailwindcss-patch": "workspace:*",

packages/tailwindcss-patch/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tailwindcss-patch",
3-
"version": "1.0.4",
3+
"version": "1.1.0-rc.0",
44
"description": "patch tailwindcss for exposing context",
55
"main": "dist/index.js",
66
"types": "dist/types/index.d.ts",

packages/tailwindcss-patch/test/cache.test.ts

+7-6
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@ describe('cache', () => {
1919

2020
it('write and read cache default option', () => {
2121
// const opt = getCacheOptions()
22-
let cache: Set<string> | undefined
23-
cache = readCache()
24-
// expect(cache).toBe(undefined)
25-
writeCache(new Set(['a', 'b', 'c']), {
22+
const opt = {
2623
dir: path.resolve(__dirname, 'fixtures/cache'),
2724
file: 'raw-method.json'
28-
})
29-
cache = readCache()
25+
}
26+
let cache: Set<string> | undefined
27+
cache = readCache(opt)
28+
// expect(cache).toBe(undefined)
29+
writeCache(new Set(['a', 'b', 'c']), opt)
30+
cache = readCache(opt)
3031
expect(cache).toBeDefined()
3132
if (cache) {
3233
expect(cache.size).toBe(3)

packages/unplugin-tailwindcss-mangle/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unplugin-tailwindcss-mangle",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "mangle tailwindcss utilities class plugin. support vite and webpack!",
55
"main": "./dist/index.js",
66
"module": "./dist/index.mjs",

pnpm-lock.yaml

+67-54
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)