Skip to content

Commit

Permalink
chore: bump to v1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianwessel committed Jul 11, 2024
1 parent 940efec commit 94a0ba6
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 5 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,21 @@ This TypeScript package allows you to safely execute **JavaScript AND TypeScript

**[Find examples in the repository](https://github.com/sebastianwessel/quickjs/tree/main/example)**

## Version 1: Rolling Release

### Fast Lane - Fast Pace

Welcome to the first version of our npm package! This release follows a rolling release model, prioritizing rapid development and quick iterations. The approach is designed to deliver features swiftly, gather feedback promptly, and implement fixes without delay. This means you get the latest features and improvements as soon as they are ready, ensuring you always have access to the cutting-edge functionality.

Key aspects of our rolling release model:

- **Ship Fast:** Release new features and updates as soon as they are developed.
- **Get Fast Feedback:** Your feedback is crucial. I listen and respond quickly to ensure the package meets your needs.
- **Fix Quickly:** Bugs and issues are addressed promptly, minimizing any disruptions.
- **Fast-Paced Development:** Our development cycle is agile, allowing us to adapt and evolve based on user input.

Stay tuned for frequent updates and enhancements.

## Basic Usage

Here's a simple example of how to use the package:
Expand Down
15 changes: 15 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,21 @@ This TypeScript package allows you to safely execute **JavaScript and TypeScript
- **Versatility**: Easily integrate with existing TypeScript projects.
- **Simplicity**: User-friendly API for executing and managing JavaScript and TypeScript code in the sandbox.

## Version 1: Rolling Release

### Fast Lane - Fast Pace

Welcome to the first version of our npm package! This release follows a rolling release model, prioritizing rapid development and quick iterations. The approach is designed to deliver features swiftly, gather feedback promptly, and implement fixes without delay. This means you get the latest features and improvements as soon as they are ready, ensuring you always have access to the cutting-edge functionality.

Key aspects of our rolling release model:

- **Ship Fast:** Release new features and updates as soon as they are developed.
- **Get Fast Feedback:** Your feedback is crucial. I listen and respond quickly to ensure the package meets your needs.
- **Fix Quickly:** Bugs and issues are addressed promptly, minimizing any disruptions.
- **Fast-Paced Development:** Our development cycle is agile, allowing us to adapt and evolve based on user input.

Stay tuned for frequent updates and enhancements.

## Basic Usage

Here's a simple example of how to use the package:
Expand Down
3 changes: 2 additions & 1 deletion jsr.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://jsr.io/schema/config-file.v1.json",
"name": "@sebastianwessel/quickjs",
"version": "1.2.0",
"version": "1.3.0",
"description": "A typescript package to execute JavaScript and TypeScript code in a webassembly quickjs sandbox",
"keywords": ["quickjs", "sandbox", "typescript", "javascript", "webassembly"],
"exports": "./dist/esm/index.js",
"publish": {
"include": ["dist/**/*.js", "dist/**/*.d.ts", "README.md", "package.json"],
Expand Down
16 changes: 12 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sebastianwessel/quickjs",
"version": "1.2.0",
"version": "1.3.0",
"description": "A typescript package to execute JavaScript and TypeScript code in a webassembly quickjs sandbox",
"type": "module",
"engines": {
Expand All @@ -20,10 +20,18 @@
"package",
"library"
],
"files": ["dist"],
"files": [
"dist"
],
"tshy": {
"exclude": ["src/**/*.test.ts", "vendor"],
"dialects": ["esm", "commonjs"],
"exclude": [
"src/**/*.test.ts",
"vendor"
],
"dialects": [
"esm",
"commonjs"
],
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
Expand Down

0 comments on commit 94a0ba6

Please sign in to comment.