-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from datavisyn/release-1.0.1
Release 1.0.1
- Loading branch information
Showing
17 changed files
with
36,195 additions
and
129 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: publish | ||
|
||
on: workflow_dispatch | ||
|
||
jobs: | ||
publish: | ||
uses: datavisyn/github-workflows/.github/workflows/publish-node.yml@main | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "visyn_scripts", | ||
"description": "", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"author": { | ||
"name": "datavisyn GmbH", | ||
"email": "[email protected]", | ||
|
@@ -146,8 +146,7 @@ | |
"yeoman-generator": "4" | ||
}, | ||
"devDependencies": { | ||
"@types/yargs": "^17.0.10", | ||
"install-local-dependencies": "^0.2.3" | ||
"@types/yargs": "^17.0.10" | ||
}, | ||
"peerDependencies": { | ||
"@types/react": "^16.9.23", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
node_modules/ | ||
bundles/ | ||
package-lock.json | ||
|
||
# yarn | ||
.pnp.* | ||
.yarn/* | ||
!.yarn/patches | ||
!.yarn/plugins | ||
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions |
This file was deleted.
Oops, something went wrong.
783 changes: 783 additions & 0 deletions
783
tests_fixtures/workspace_template/.yarn/releases/yarn-3.2.2.cjs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{ | ||
"defaultApp": "demo", | ||
"modules": [] | ||
"defaultApp": "demo" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,31 +15,37 @@ | |
"url": "[email protected]:datavisyn/visyn_scripts.git" | ||
}, | ||
"scripts": { | ||
"build": "npm run clean && npm run compile", | ||
"clean": "rimraf build dist lib", | ||
"all": "yarn run lint:fix && yarn run test && yarn run build && yarn run dist", | ||
"build": "yarn run clean && yarn run compile && yarn run copy", | ||
"clean": "visyn_scripts clean build dist lib", | ||
"compile:watch": "visyn_scripts compile --watch", | ||
"compile": "visyn_scripts compile", | ||
"copy": "visyn_scripts copy", | ||
"cy:open": "cypress open", | ||
"cy:run": "cypress run", | ||
"delete-dependencies": "visyn_scripts clean node_modules", | ||
"predist": "yarn run lint && yarn run test && yarn run build", | ||
"dist": "mkdir lib && cd dist && tar cvzf ../lib/marketplace360.tar.gz *", | ||
"docs": "visyn_scripts docs", | ||
"lint:fix": "visyn_scripts lint --fix", | ||
"lint": "visyn_scripts lint", | ||
"postcompile": "npm run copy", | ||
"posttest": "npm run lint", | ||
"prebuild": "npm run test", | ||
"test:watch": "visyn_scripts test --watch", | ||
"test": "visyn_scripts test" | ||
"prepack": "yarn run build", | ||
"start": "visyn_scripts start --env workspace_mode=single", | ||
"storybook:build": "NODE_OPTIONS=--max_old_space_size=4096 build-storybook", | ||
"storybook": "NODE_OPTIONS=--max_old_space_size=4096 start-storybook -p 6006", | ||
"test": "visyn_scripts test", | ||
"webpack:dev": "visyn_scripts build --mode development --env workspace_mode=single", | ||
"webpack:prod": "visyn_scripts build --mode production --env workspace_mode=single" | ||
}, | ||
"dependencies": { | ||
"tdp_core": "git+ssh://[email protected]:datavisyn/tdp_core#develop", | ||
"visyn_scripts": "git+ssh://[email protected]:datavisyn/visyn_scripts#develop" | ||
"tdp_core": "git+ssh://[email protected]:datavisyn/tdp_core#develop" | ||
}, | ||
"devDependencies": {}, | ||
"visyn": { | ||
"entries": { | ||
"app": { | ||
"js": "dist/index.initialize.js", | ||
"js": "src/index.initialize.tsx", | ||
"html": "index.html", | ||
"template": "dist/index.template.ejs", | ||
"template": "src/index.template.ejs", | ||
"chunkName": "app", | ||
"excludeChunks": [] | ||
} | ||
|
Oops, something went wrong.