Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish Updates #67

Merged
merged 4 commits into from
Nov 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ All projects need to give some kind of data import facility, so that their users

At first it looks like just importing file and inserting in database, but as the app grows facilities like validating data, data mapping, becomes must. `impler` provides infrastructure to applications, so that they don't have to write code for data import.

> impler.io is under development.

<p align="right">(<a href="#readme-top">back to top</a>)</p>

### Built With
Expand Down Expand Up @@ -115,8 +113,8 @@ Follow these steps to setup the project locally,
- [x] Mapping Phase
- [x] Review Phase
- [x] Confirm Phase
- [] Infra
- [] Docker
- [ ] Infra
- [ ] Docker

<p align="right">(<a href="#readme-top">back to top</a>)</p>

Expand Down
4 changes: 1 addition & 3 deletions libs/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "0.1.0",
"description": "Reusable types and classes to shared between apps and libraries",
"license": "MIT",
"private": true,
"author": "knovator",
"repository": "https://github.com/knovator/impler.io",
"types": "dist/index.d.ts",
Expand All @@ -20,9 +21,6 @@
"lint": "eslint src",
"lint:fix": "pnpm lint -- --fix"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^18.7.18",
"rimraf": "^3.0.2",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"release:minor": "lerna version minor --no-push",
"release:preminor": "lerna version preminor --no-push",
"release:prerelease": "lerna version prerelease --no-push",
"publish": "lerna publish from-package"
"publish": "pnpm build && pnpm -r --if-present publish"
},
"keywords": [
"data-import",
Expand Down
4 changes: 1 addition & 3 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"repository": "https://github.com/knovator/impler.io",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"private": true,
"keywords": [
"impler",
"knovator",
Expand All @@ -32,9 +33,6 @@
"doc:json": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --json build/docs/typedoc.json",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^18.11.9",
"rimraf": "^3.0.2",
Expand Down
1 change: 1 addition & 0 deletions packages/react/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>impler</h1>
4 changes: 3 additions & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
],
"files": [
"dist",
"README.md",
"package.json"
],
"scripts": {
Expand All @@ -24,7 +25,8 @@
"start": "npm run build:watch",
"prebuild": "rimraf dist",
"build": "rollup -c",
"build:watch": "rollup -c -w"
"build:watch": "rollup -c -w",
"publish": "npm publish"
},
"publishConfig": {
"access": "public"
Expand Down