Skip to content

Commit

Permalink
⬆️ Update to yarn 2 + solid 0.20 + clean up deps
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandre-mb-airweb committed Sep 25, 2020
1 parent cb7698e commit 5e678a8
Show file tree
Hide file tree
Showing 14 changed files with 18,894 additions and 4,618 deletions.
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
node_modules
lib
dist
dist

.yarn/*
!.yarn/cache
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
14,962 changes: 14,962 additions & 0 deletions .pnp.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"arcanis.vscode-zipfs"
]
}
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"search.exclude": {
"**/.yarn": true,
"**/.pnp.*": true
},
"typescript.tsdk": ".yarn/sdks/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
}
5 changes: 5 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"

yarnPath: .yarn/releases/yarn-berry.cjs
25 changes: 14 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
"name": "@amoutonbrady/vite-plugin-solid",
"version": "0.1.1",
"version": "0.2.0",
"description": "solid-js integration plugin for vite",
"main": "lib/plugin.js",
"private": false,
"publishConfig": {
"access": "public"
},
Expand All @@ -13,7 +12,7 @@
"types": "lib/plugin.d.ts",
"scripts": {
"build": "tsc -p .",
"prepublishOnly": "pnpm build"
"prepack": "yarn build"
},
"repository": {
"type": "git",
Expand All @@ -33,21 +32,25 @@
},
"homepage": "https://github.com/amoutonbrady/vite-plugin-solid#readme",
"peerDependencies": {
"solid-js": "^0.18.12 || ^1.0.0",
"vite": "^1.0.0-beta.11 || ^1.0.0"
"solid-js": "^0.20.0 || ^1.0.0",
"vite": "^1.0.0-rc.4 || ^1.0.0"
},
"dependencies": {
"@babel/core": "^7.11.1",
"@babel/core": "^7.11.6",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-babel": "^5.2.0",
"babel-preset-solid": "^0.18.14",
"@rollup/plugin-babel": "^5.2.1",
"babel-preset-solid": "^0.20.0",
"dedent": "^0.7.0",
"solid-js": "^0.18.14",
"solid-js": "^0.20.0",
"vite": "^1.0.0-rc.4"
},
"devDependencies": {
"@types/babel__core": "^7.1.9",
"@babel/types": "^7.11.5",
"@types/babel__core": "^7.1.10",
"@types/dedent": "^0.7.0",
"typescript": "beta"
"@types/node": "^14.11.2",
"rollup": "^2.28.2",
"source-map": "^0.7.3",
"typescript": "^4.0.3"
}
}
15 changes: 0 additions & 15 deletions playground/package.json

This file was deleted.

Loading

0 comments on commit 5e678a8

Please sign in to comment.