Skip to content

Commit

Permalink
feat: release prism 3.x alpha with required scripts
Browse files Browse the repository at this point in the history
* feat: remove scripts

* feat: add lerna and publish as beta

* feat: add deployment script

* chore: update license reference

* chore: add oclif manifest

* chore: add license files

* chore: do not push tags

* docs: regenerate readme

* chore: 3.0.0-pre

* feat: set access to public for scoped packages

* deps: update lerna

* feat: canary

* feat: change dist-tag to alpha

* chore: delete lib example

* docs: update commands list
XVincentX authored Apr 10, 2019
1 parent 4ba0c28 commit 6864986
Showing 19 changed files with 3,217 additions and 2,669 deletions.
23 changes: 22 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -36,9 +36,30 @@ jobs:
- run:
name: Run build
command: yarn build
publish:
docker:
- image: circleci/node:11
steps:
- checkout
- run:
name: Install Dependencies
command: yarn
- run:
name: Build all code to JavaScript
command: yarn build
- run:
name: Publish
command: yarn lerna publish prerelease --yes --dist-tag alpha --conventional-commits


workflows:
version: 2
build_and_publish:
build:
jobs:
- build
- publish:
filters:
branches:
only: develop
requires:
- build
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -17,6 +17,10 @@ node_modules/
# Distribution directory
dist

*.tsbuildinfo

# IDE
.idea
lib

oclif.manifest.json
67 changes: 0 additions & 67 deletions examples/library-example/index.ts

This file was deleted.

20 changes: 0 additions & 20 deletions examples/library-example/package.json

This file was deleted.

Loading
Oops, something went wrong.

0 comments on commit 6864986

Please sign in to comment.