chore: initialize turborepo & changesets

This commit is contained in:
thecodrr
2021-12-18 11:07:37 +05:00
parent dc24e629c5
commit 5770972e88
10 changed files with 57563 additions and 9 deletions

8
.changeset/README.md Normal file
View File

@@ -0,0 +1,8 @@
# Changesets
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

10
.changeset/config.json Normal file
View File

@@ -0,0 +1,10 @@
{
"$schema": "https://unpkg.com/@changesets/config@1.6.3/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.turbo
dist
node_modules

View File

@@ -1,4 +1,4 @@
import { Flex, Link, Text } from "@theme-ui/components";
import { Flex } from "@theme-ui/components";
import { ThemeProvider } from "@theme-ui/theme-provider";
import "./App.css";
import { ThemeFactory } from "./theme";

27
notesnook.code-workspace Normal file
View File

@@ -0,0 +1,27 @@
{
"folders": [
{
"name": "✨ notesnook",
"path": "."
},
{
"name": "🚀 @notesnook/importer-web",
"path": "apps/importer"
},
{
"name": "📦 @notesnook/enex",
"path": "packages/enex"
},
{
"name": "📦 @notesnook/importer",
"path": "packages/importer"
},
{
"name": "📦 @streetwritersco/tinymce-plugins",
"path": "packages/tinymce-plugins"
}
],
"settings": {
"git.ignoreLimitWarning": true
}
}

57468
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

37
package.json Normal file
View File

@@ -0,0 +1,37 @@
{
"name": "notesnook",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetwriters/notesnook.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/streetwriters/notesnook/issues"
},
"homepage": "https://github.com/streetwriters/notesnook#readme",
"devDependencies": {
"@changesets/cli": "^2.18.1",
"turbo": "^1.0.19"
},
"workspaces": [
"packages/*",
"apps/*"
],
"turbo": {
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": [
"^build"
]
}
}
}
}

View File

@@ -11,7 +11,8 @@
"typescript": "^4.5.2"
},
"scripts": {
"test": "tap --ts "
"test": "tap --ts ",
"build": "tsc"
},
"author": "",
"license": "ISC",

View File

@@ -9,7 +9,7 @@
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@notesnook/enex": "file:../../enex",
"@notesnook/enex": "file:../enex",
"fflate": "^0.7.1",
"node-html-parser": "github:thecodrr/node-html-parser",
"showdown": "github:thecodrr/showdown",
@@ -30,6 +30,7 @@
"../../enex": {
"name": "@notesnook/enex",
"version": "1.0.0",
"extraneous": true,
"license": "ISC",
"dependencies": {
"node-html-parser": "^5.1.0"
@@ -46,7 +47,6 @@
"../enex": {
"name": "@notesnook/enex",
"version": "1.0.0",
"extraneous": true,
"license": "ISC",
"dependencies": {
"node-html-parser": "^5.1.0"
@@ -717,7 +717,7 @@
}
},
"node_modules/@notesnook/enex": {
"resolved": "../../enex",
"resolved": "../enex",
"link": true
},
"node_modules/@tsconfig/node10": {
@@ -5888,7 +5888,7 @@
"optional": true
},
"@notesnook/enex": {
"version": "file:../../enex",
"version": "file:../enex",
"requires": {
"@types/node": "^16.11.10",
"@types/tap": "^15.0.5",

View File

@@ -1,14 +1,14 @@
{
"name": "@notesnook/importer",
"version": "1.0.0",
"private": "true",
"private": true,
"main": "dist/index.js",
"scripts": {
"test": "tap --ts",
"start": "index.js"
"build": "tsc"
},
"dependencies": {
"@notesnook/enex": "file:../../enex",
"@notesnook/enex": "file:../enex",
"fflate": "^0.7.1",
"node-html-parser": "github:thecodrr/node-html-parser",
"showdown": "github:thecodrr/showdown",