Skip to content

Commit

Permalink
v0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ryansolid committed Oct 18, 2020
1 parent c3211d7 commit 16839a3
Show file tree
Hide file tree
Showing 9 changed files with 268 additions and 268 deletions.
12 changes: 6 additions & 6 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"packages": [
"packages/*"
],
"version": "0.21.0-beta.0"
}
{
"packages": [
"packages/*"
],
"version": "0.21.0"
}
40 changes: 20 additions & 20 deletions packages/babel-preset-solid/package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "babel-preset-solid",
"version": "0.21.0-beta.0",
"description": "Babel preset to transform JSX for Solid.js",
"author": "Ryan Carniato <[email protected]>",
"homepage": "https://github.com/ryansolid/solid/blob/master/packages/babel-preset-solid#readme",
"license": "MIT",
"repository": "ryansolid/babel-preset-solid",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "node test.js"
},
"dependencies": {
"babel-plugin-jsx-dom-expressions": "~0.22.0",
"babel-plugin-transform-rename-import": "^2.3.0"
}
}
{
"name": "babel-preset-solid",
"version": "0.21.0",
"description": "Babel preset to transform JSX for Solid.js",
"author": "Ryan Carniato <[email protected]>",
"homepage": "https://github.com/ryansolid/solid/blob/master/packages/babel-preset-solid#readme",
"license": "MIT",
"repository": "ryansolid/babel-preset-solid",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "node test.js"
},
"dependencies": {
"babel-plugin-jsx-dom-expressions": "~0.22.0",
"babel-plugin-transform-rename-import": "^2.3.0"
}
}
64 changes: 32 additions & 32 deletions packages/react-solid-state/package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
{
"name": "react-solid-state",
"description": "Auto tracking state management for modern React",
"version": "0.21.0-beta.0",
"author": "Ryan Carniato",
"license": "MIT",
"homepage": "https://github.com/ryansolid/solid/blob/master/packages/react-solid-state#readme",
"main": "lib/react-solid-state.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"solid-js": "^0.21.0-beta.0"
},
"peerDependencies": {
"react": "^16.8.2",
"react-dom": "^16.8.2"
},
"devDependencies": {
"@babel/preset-react": "^7.8.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-testing-library": "^7.0.1"
}
}
{
"name": "react-solid-state",
"description": "Auto tracking state management for modern React",
"version": "0.21.0",
"author": "Ryan Carniato",
"license": "MIT",
"homepage": "https://github.com/ryansolid/solid/blob/master/packages/react-solid-state#readme",
"main": "lib/react-solid-state.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"solid-js": "^0.21.0"
},
"peerDependencies": {
"react": "^16.8.2",
"react-dom": "^16.8.2"
},
"devDependencies": {
"@babel/preset-react": "^7.8.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-testing-library": "^7.0.1"
}
}
48 changes: 24 additions & 24 deletions packages/solid-element/package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "solid-element",
"description": "Webcomponents wrapper for Solid",
"author": "Ryan Carniato",
"license": "MIT",
"version": "0.21.0-beta.0",
"homepage": "https://github.com/ryansolid/solid/blob/master/packages/solid-element#readme",
"main": "lib/solid-element.js",
"module": "dist/solid-element.js",
"types": "types/index.d.ts",
"files": [
"dist",
"lib",
"types/index.d.ts"
],
"sideEffects": "false",
"scripts": {
"build": "rollup -c && tsc"
},
"dependencies": {
"component-register": "~0.8.0",
"solid-js": "^0.21.0-beta.0"
}
}
{
"name": "solid-element",
"description": "Webcomponents wrapper for Solid",
"author": "Ryan Carniato",
"license": "MIT",
"version": "0.21.0",
"homepage": "https://github.com/ryansolid/solid/blob/master/packages/solid-element#readme",
"main": "lib/solid-element.js",
"module": "dist/solid-element.js",
"types": "types/index.d.ts",
"files": [
"dist",
"lib",
"types/index.d.ts"
],
"sideEffects": "false",
"scripts": {
"build": "rollup -c && tsc"
},
"dependencies": {
"component-register": "~0.8.0",
"solid-js": "^0.21.0"
}
}
68 changes: 34 additions & 34 deletions packages/solid-rx/package.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
{
"name": "solid-rx",
"version": "0.21.0-beta.0",
"description": "Functionally reactive extensions for Solid.js",
"author": "Ryan Carniato <[email protected]>",
"homepage": "https://github.com/ryansolid/solid/blob/master/packages/solid-rx#readme",
"license": "MIT",
"main": "lib/solid-rx.js",
"module": "dist/solid-rx.js",
"types": "types/index.d.ts",
"files": [
"dist",
"lib",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ryansolid/solid.git"
},
"scripts": {
"build": "rollup -c && tsc",
"test": "jest",
"test:coverage": "jest --coverage"
},
"bugs": {
"url": "https://github.com/ryansolid/solid/issues"
},
"peerDependencies": {
"solid-js": "^0.18.0"
},
"devDependencies": {
"solid-js": "^0.21.0-beta.0"
}
}
{
"name": "solid-rx",
"version": "0.21.0",
"description": "Functionally reactive extensions for Solid.js",
"author": "Ryan Carniato <[email protected]>",
"homepage": "https://github.com/ryansolid/solid/blob/master/packages/solid-rx#readme",
"license": "MIT",
"main": "lib/solid-rx.js",
"module": "dist/solid-rx.js",
"types": "types/index.d.ts",
"files": [
"dist",
"lib",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ryansolid/solid.git"
},
"scripts": {
"build": "rollup -c && tsc",
"test": "jest",
"test:coverage": "jest --coverage"
},
"bugs": {
"url": "https://github.com/ryansolid/solid/issues"
},
"peerDependencies": {
"solid-js": "^0.18.0"
},
"devDependencies": {
"solid-js": "^0.21.0"
}
}
70 changes: 35 additions & 35 deletions packages/solid-ssr/package.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"name": "solid-ssr",
"description": "Patches node to work with Solid's SSR",
"version": "0.21.0-beta.0",
"author": "Ryan Carniato",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryansolid/solid/solid-ssr"
},
"main": "index.js",
"types": "index.d.ts",
"files": [
"static"
],
"scripts": {
"build:example:async": "rollup -c examples/async/rollup.config.js",
"start:example:async": "node examples/async/lib/index.js",
"build:example:ssg": "rollup -c examples/ssg/rollup.config.js && node examples/ssg/export.js",
"start:example:ssg": "npx serve examples/ssg/public -l 8080",
"build:example:ssr": "rollup -c examples/ssr/rollup.config.js",
"start:example:ssr": "node examples/ssr/lib/index.js",
"build:example:stream": "rollup -c examples/stream/rollup.config.js",
"start:example:stream": "node examples/stream/lib/index.js"
},
"devDependencies": {
"babel-preset-solid": "^0.21.0-beta.0",
"express": "^4.17.1",
"solid-js": "^0.21.0-beta.0",
"solid-styled-components": "^0.21.0-beta.0"
},
"peerDependencies": {
"solid-js": "*"
}
}
{
"name": "solid-ssr",
"description": "Patches node to work with Solid's SSR",
"version": "0.21.0",
"author": "Ryan Carniato",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryansolid/solid/solid-ssr"
},
"main": "index.js",
"types": "index.d.ts",
"files": [
"static"
],
"scripts": {
"build:example:async": "rollup -c examples/async/rollup.config.js",
"start:example:async": "node examples/async/lib/index.js",
"build:example:ssg": "rollup -c examples/ssg/rollup.config.js && node examples/ssg/export.js",
"start:example:ssg": "npx serve examples/ssg/public -l 8080",
"build:example:ssr": "rollup -c examples/ssr/rollup.config.js",
"start:example:ssr": "node examples/ssr/lib/index.js",
"build:example:stream": "rollup -c examples/stream/rollup.config.js",
"start:example:stream": "node examples/stream/lib/index.js"
},
"devDependencies": {
"babel-preset-solid": "^0.21.0",
"express": "^4.17.1",
"solid-js": "^0.21.0",
"solid-styled-components": "^0.21.0"
},
"peerDependencies": {
"solid-js": "*"
}
}
70 changes: 35 additions & 35 deletions packages/solid-styled-components/package.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"name": "solid-styled-components",
"description": "Solid wrapper for Styled JSX",
"version": "0.21.0-beta.0",
"author": "Ryan Carniato",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryansolid/solid/blob/master/packages/solid-styled-jsx"
},
"main": "lib/solid-styled-components.js",
"module": "dist/solid-styled-components.js",
"types": "types/index.d.ts",
"files": [
"dist",
"lib",
"types/index.d.ts"
],
"sideEffects": "false",
"scripts": {
"build": "rollup -c && tsc",
"test": "jest && npm run test:types",
"test:types": "tsc --project tsconfig.test.json"
},
"dependencies": {
"csstype": "^3.0.3",
"goober": "2.0.8"
},
"peerDependencies": {
"solid-js": "^0.20.3"
},
"devDependencies": {
"solid-js": "^0.21.0-beta.0"
}
}
{
"name": "solid-styled-components",
"description": "Solid wrapper for Styled JSX",
"version": "0.21.0",
"author": "Ryan Carniato",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryansolid/solid/blob/master/packages/solid-styled-jsx"
},
"main": "lib/solid-styled-components.js",
"module": "dist/solid-styled-components.js",
"types": "types/index.d.ts",
"files": [
"dist",
"lib",
"types/index.d.ts"
],
"sideEffects": "false",
"scripts": {
"build": "rollup -c && tsc",
"test": "jest && npm run test:types",
"test:types": "tsc --project tsconfig.test.json"
},
"dependencies": {
"csstype": "^3.0.3",
"goober": "2.0.8"
},
"peerDependencies": {
"solid-js": "^0.20.3"
},
"devDependencies": {
"solid-js": "^0.21.0"
}
}
Loading

0 comments on commit 16839a3

Please sign in to comment.