Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MonicaOlejniczak committed Sep 16, 2021
1 parent 06b6bec commit 19679de
Show file tree
Hide file tree
Showing 9 changed files with 50 additions and 49 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,14 @@ jobs:

- name: Publish packages to npm registry
# Only publish public packages
run: npm publish\
--access public\
--workspace packages/core/manifest\
--workspace packages/core/react-loosely-lazy\
--workspace packages/plugins/babel\
--workspace packages/plugins/parcel-reporter-manifest\
--workspace packages/plugins/parcel-transformer\
run: >-
npm publish
--access public
--workspace packages/core/manifest
--workspace packages/core/react-loosely-lazy
--workspace packages/plugins/babel
--workspace packages/plugins/parcel-reporter-manifest
--workspace packages/plugins/parcel-transformer
--workspace packages/plugins/webpack
env:
NODE_AUTH_TOKEN: ${{secrets.REACT_LAZY_NPM_TOKEN}}
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
48 changes: 24 additions & 24 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion packages/core/manifest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-loosely-lazy/manifest",
"version": "0.7.0",
"version": "1.0.0",
"description": "react-loosely-lazy manifest types and utilities",
"keywords": [
"react-loosely-lazy",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/react-loosely-lazy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-loosely-lazy",
"version": "0.7.0",
"version": "1.0.0",
"description": "Suspense enable and SSR compatible async components with priorities",
"keywords": [
"react",
Expand Down Expand Up @@ -32,7 +32,7 @@
"react-dom": "^16.14.0"
},
"peerDependencies": {
"@react-loosely-lazy/manifest": "0.7.0",
"@react-loosely-lazy/manifest": "1.0.0",
"react": "^16.9.0 || ^17.0.0-0"
}
}
2 changes: 1 addition & 1 deletion packages/plugins/babel/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-loosely-lazy/babel-plugin",
"version": "0.7.0",
"version": "1.0.0",
"description": "Babel plugin for react-loosely-lazy",
"keywords": [
"react-loosely-lazy",
Expand Down
8 changes: 4 additions & 4 deletions packages/plugins/parcel-reporter-manifest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-loosely-lazy/parcel-reporter-manifest",
"version": "0.7.0",
"version": "1.0.0",
"description": "Parcel reporter plugin that generates a manifest for react-loosely-lazy",
"keywords": [
"react-loosely-lazy",
Expand Down Expand Up @@ -34,11 +34,11 @@
"@parcel/core": "2.0.0-rc.0",
"@parcel/fs": "2.0.0-rc.0",
"@parcel/types": "2.0.0-rc.0",
"@react-loosely-lazy/integration-app": "^0.7.0",
"@react-loosely-lazy/manifest": "^0.7.0"
"@react-loosely-lazy/integration-app": "^1.0.0",
"@react-loosely-lazy/manifest": "^1.0.0"
},
"peerDependencies": {
"@react-loosely-lazy/manifest": "0.7.0"
"@react-loosely-lazy/manifest": "1.0.0"
},
"engines": {
"parcel": "^2.0.0-rc.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/plugins/parcel-transformer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-loosely-lazy/parcel-transformer",
"version": "0.7.0",
"version": "1.0.0",
"description": "Parcel transformer plugin for react-loosely-lazy",
"keywords": [
"react-loosely-lazy",
Expand Down Expand Up @@ -31,7 +31,7 @@
"devDependencies": {
"@parcel/config-default": "2.0.0-rc.0",
"@parcel/core": "2.0.0-rc.0",
"@react-loosely-lazy/integration-app": "^0.7.0"
"@react-loosely-lazy/integration-app": "^1.0.0"
},
"engines": {
"parcel": "^2.0.0-rc.0"
Expand Down
10 changes: 5 additions & 5 deletions packages/plugins/webpack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-loosely-lazy/webpack-plugin",
"version": "0.7.0",
"version": "1.0.0",
"description": "Webpack plugin for react-loosely-lazy",
"keywords": [
"react-loosely-lazy",
Expand All @@ -25,8 +25,8 @@
"dist"
],
"devDependencies": {
"@react-loosely-lazy/integration-app": "^0.7.0",
"@react-loosely-lazy/manifest": "^0.7.0",
"@react-loosely-lazy/integration-app": "^1.0.0",
"@react-loosely-lazy/manifest": "^1.0.0",
"@types/mini-css-extract-plugin": "^1.4.3",
"@types/react": "^16.14.8",
"@types/react-dom": "^16.9.13",
Expand All @@ -35,12 +35,12 @@
"mini-css-extract-plugin": "^1.6.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-loosely-lazy": "0.7.0",
"react-loosely-lazy": "1.0.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"webpack": "^4.46.0"
},
"peerDependencies": {
"@react-loosely-lazy/manifest": "0.7.0",
"@react-loosely-lazy/manifest": "1.0.0",
"webpack": "^4.x"
}
}
4 changes: 2 additions & 2 deletions packages/testing/integration-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-loosely-lazy/integration-app",
"version": "0.7.0",
"version": "1.0.0",
"private": true,
"description": "Common application used for plugin integration tests",
"keywords": [
Expand All @@ -21,7 +21,7 @@
"source": "src/index.tsx",
"dependencies": {
"react": "^16.14.0",
"react-loosely-lazy": "^0.7.0"
"react-loosely-lazy": "^1.0.0"
},
"devDependencies": {
"@types/react": "^16.14.8"
Expand Down

0 comments on commit 19679de

Please sign in to comment.