Skip to content

Commit 5e678a8

Browse files
⬆️ Update to yarn 2 + solid 0.20 + clean up deps
1 parent cb7698e commit 5e678a8

File tree

14 files changed

+18894
-4618
lines changed

14 files changed

+18894
-4618
lines changed

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
node_modules
22
lib
3-
dist
3+
dist
4+
5+
.yarn/*
6+
!.yarn/cache
7+
!.yarn/releases
8+
!.yarn/plugins
9+
!.yarn/sdks
10+
!.yarn/versions

.pnp.js

Lines changed: 14962 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"arcanis.vscode-zipfs"
4+
]
5+
}

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"search.exclude": {
3+
"**/.yarn": true,
4+
"**/.pnp.*": true
5+
},
6+
"typescript.tsdk": ".yarn/sdks/typescript/lib",
7+
"typescript.enablePromptUseWorkspaceTsdk": true
8+
}

.yarnrc.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
plugins:
2+
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
3+
spec: "@yarnpkg/plugin-interactive-tools"
4+
5+
yarnPath: .yarn/releases/yarn-berry.cjs

package.json

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"name": "@amoutonbrady/vite-plugin-solid",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"description": "solid-js integration plugin for vite",
55
"main": "lib/plugin.js",
6-
"private": false,
76
"publishConfig": {
87
"access": "public"
98
},
@@ -13,7 +12,7 @@
1312
"types": "lib/plugin.d.ts",
1413
"scripts": {
1514
"build": "tsc -p .",
16-
"prepublishOnly": "pnpm build"
15+
"prepack": "yarn build"
1716
},
1817
"repository": {
1918
"type": "git",
@@ -33,21 +32,25 @@
3332
},
3433
"homepage": "https://github.com/amoutonbrady/vite-plugin-solid#readme",
3534
"peerDependencies": {
36-
"solid-js": "^0.18.12 || ^1.0.0",
37-
"vite": "^1.0.0-beta.11 || ^1.0.0"
35+
"solid-js": "^0.20.0 || ^1.0.0",
36+
"vite": "^1.0.0-rc.4 || ^1.0.0"
3837
},
3938
"dependencies": {
40-
"@babel/core": "^7.11.1",
39+
"@babel/core": "^7.11.6",
4140
"@babel/preset-typescript": "^7.10.4",
42-
"@rollup/plugin-babel": "^5.2.0",
43-
"babel-preset-solid": "^0.18.14",
41+
"@rollup/plugin-babel": "^5.2.1",
42+
"babel-preset-solid": "^0.20.0",
4443
"dedent": "^0.7.0",
45-
"solid-js": "^0.18.14",
44+
"solid-js": "^0.20.0",
4645
"vite": "^1.0.0-rc.4"
4746
},
4847
"devDependencies": {
49-
"@types/babel__core": "^7.1.9",
48+
"@babel/types": "^7.11.5",
49+
"@types/babel__core": "^7.1.10",
5050
"@types/dedent": "^0.7.0",
51-
"typescript": "beta"
51+
"@types/node": "^14.11.2",
52+
"rollup": "^2.28.2",
53+
"source-map": "^0.7.3",
54+
"typescript": "^4.0.3"
5255
}
5356
}

playground/package.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)